/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #4B2E19; /* Dark brown background */
    color: #FFFFFF; /* White text for readability */
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #4B2E19; /* Dark brown navbar */
}

.logo img {
    max-height: 50px;
    height: auto;
    width: auto;
}

nav {
    position: relative;
}

#menu-toggle {
    display: none;
    background: none;
    color: #FFFFFF;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 10px;
}

.nav-menu a {
    color: #A97142; /* Bronze text */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #C48A55; /* Lighter bronze on hover */
}

.nav-menu a.active {
    border-bottom: 2px solid #C48A55;
}

@media (max-width: 768px) {
    #menu-toggle {
        display: block;
        padding: 8px; /* Add padding to menu toggle for better touch */
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: #4B2E19;
        position: absolute;
        top: 100%; /* Changed from 50px */
        right: 0;
        width: 200px;
        z-index: 1000;
        border: 1px solid #A97142;
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        /* DON'T add padding to .nav-menu itself */
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0; /* Remove margins */
        border-bottom: 1px solid rgba(169, 113, 66, 0.3);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 12px 16px; /* Add padding to links instead */
        display: block;
    }
}

/* Slider */
.slider {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(75, 46, 25, 0.6); /* Dark brown semi-transparent */
    color: #FFFFFF;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots */
.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dots span {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #A97142; /* Bronze dots */
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dots .active {
    background: #C48A55; /* Lighter bronze active dot */
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background: #A97142; /* Bronze button */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-alt {
    background: #4B2E19; /* Dark brown alt button */
    border: 1px solid #A97142;
}

.btn:hover {
    background: #C48A55; /* Lighter bronze on hover */
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.feature {
    flex: 1 1 250px;
    margin: 10px;
    background: #f9f9f9;
    color: #333;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}

/* Social Media Card Styles */
.social-media {
    background: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
    margin: 0;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.social-container {
    max-width: 600px;
    margin: 0 auto;
}

.social-container h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.social-container p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.9);
    color: white;
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 1);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.social-link.instagram {
    background: linear-gradient(45deg, rgba(64, 93, 230, 0.9), rgba(88, 81, 219, 0.9), rgba(131, 58, 180, 0.9), rgba(193, 53, 132, 0.9), rgba(225, 48, 108, 0.9));
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3);
}

.social-link.tiktok {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

.social-link.tiktok:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.9);
    color: white;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}

@media (max-width: 768px) {
    .social-media {
        padding: 40px 15px;
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .social-container h3 {
        font-size: 1.7rem;
    }
    
    .social-container p {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .social-link svg {
        width: 22px;
        height: 22px;
    }
}


/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #4B2E19;
    color: #FFFFFF;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
}

/* End of your existing styles will take ou this one update*/ 

/* ---- Contact page styles ---- */
.contact-card.dark-theme {
    background: rgba(75, 46, 25, 0.9);
    color: #fff;
    border: 1px solid #A97142;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.contact-card.dark-theme h2 {
    color: #A97142;
}

.contact-hero {
    position: relative; /* needed for overlay */
}

.contact-hero img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid #A97142;
}

/* Thin overlay for hero image */
.contact-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px; /* height to blend with menu */
    background: linear-gradient(to bottom, rgba(75, 46, 25, 0.8), transparent);
}

.map-container {
    margin-top: 20px;
    border-top: 2px solid #A97142;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}
