/* 
* Jaguares Outdoors Hn Website Styles
* A modern, responsive design for an outdoor adventure company
*/

:root {
    --primary-color: #034159; /* Dark blue-teal from logo */
    --primary-dark: #030A8C; /* Deep blue from logo */
    --primary-light: #0353A4; /* Lighter variation of the blue */
    --secondary-color: #F23827; /* Red from logo */
    --accent-color: #BF3434; /* Darker red from logo */
    --dark-color: #0D0D0D; /* Near black from logo */
    --light-color: #f5f5f5;
    --gray-color: #757575;
    --white-color: #ffffff;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

section {
    padding: 80px 0;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
}

/* Navigation */
.navbar {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled {
    background-color: var(--white-color);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%283, 65, 89, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

/* Adjust logo size when navbar is scrolled */
.navbar.scrolled .navbar-logo {
    height: 50px;
}

.brand-text {
    margin-right: 5px;
}

.brand-flag {
    font-size: 1.2rem;
}

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Mobile navbar styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white-color);
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .nav-link::after {
        bottom: -1px;
        height: 3px;
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    font-weight: 700;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../img/hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.hero-activities span {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 500;
}

/* Activities Section */
.activity-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.activity-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.activity-card p {
    margin-bottom: 25px;
    color: var(--gray-color);
}

/* Experiences Section */
.experience-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.experience-content {
    padding: 20px;
}

.experience-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.rating {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* About Section */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* Testimonials Section */
.testimonial-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gray-color);
}

.testimonial-content p::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-light);
}

.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h5 {
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-author small {
    color: var(--gray-color);
}

/* Contact Section */
.contact-form .form-control, .contact-form .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-info {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    color: var(--white-color);
    max-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--secondary-color);
}

.contact-item h5 {
    margin-bottom: 5px;
}

.contact-item p {
    margin-bottom: 0;
}

.social-media {
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    color: var(--white-color);
}

.social-media h5 {
    margin-bottom: 15px;
    color: var(--white-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--white-color);
    color: var(--dark-color);
    padding: 60px 0 20px;
}

footer h4, footer h5 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

footer p {
    color: var(--dark-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

footer a {
    color: var(--primary-color);
}

footer a:hover {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: white;
        padding: 15px;
        border-radius: 5px;
        margin-top: 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-activities {
        flex-direction: column;
        align-items: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-top: 30px;
    }
}
