/* 
   El Sabor Auténtico - Mexican Restaurant Stylesheet
   Main CSS file for the website
*/

/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    color: #5D4037;
    background-color: #FFF8E1;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-wrapper {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sansita', sans-serif;
    margin-top: 0;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: color 0.3s;
}

/* Header Styles */

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Main Navigation */
.main-nav {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: #5D4037;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #C70039;
}

/* Underline effect for nav links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #C70039;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Active state for current page */
.nav-link.active {
    color: #C70039;
}

.nav-link.active::after {
    width: 100%;
}

/* Header Actions (Buttons + Email) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Smaller button style for header */
.button-small {
    padding: 8px 15px;
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: #5D4037;
    cursor: pointer;
}

.mobile-menu-toggle:hover {
    color: #C70039;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .header-wrapper {
        justify-content: space-between;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-list {
        justify-content: center;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .main-nav {
        display: none; /* Hide standard navigation */
    }
    
    .mobile-menu-toggle {
        display: block;  /* Show mobile menu toggle */
    }
    
    .header-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    /* Optional: Show mobile menu when active */
    .main-nav.active {
        display: block;
    }
    
    .nav-list.active {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        margin: 10px 0;
    }
}

@media screen and (max-width: 479px) {
    .header-actions {
        display: none; /* Hide actions on very small screens */
    }
    
    /* Optional: Show actions in mobile menu when active */
    .header-actions.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        order: 4;
        margin-top: 15px;
    }
    
    .button-small {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
}

/* Hero Section */
.section-hero {
    padding: 100px 0;
    background-color: #FFF8E1;
    background-image: url('../images/mexican-pattern.svg');
    background-size: cover;
    background-blend-mode: overlay;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
}

.hero_image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overline-text {
    color: #C70039;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Sansita', sans-serif;
}

.heading-style-h1 {
    font-family: 'Sansita', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 25px;
    color: #5D4037;
}

.text-size-regular {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #C70039;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-family: 'Lato', sans-serif;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #A50030;
}

/* Features Section */
.section-featured {
    padding: 80px 0;
    background-color: #FFF8E1;
}

.featured-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.featured-item {
    display: flex;
    align-items: flex-start;
    width: 31%;
    margin-bottom: 40px;
}

.featured-icon-wrap {
    margin-right: 15px;
}

.featured-icon {
    width: 50px;
    height: 50px;
}

.heading-style-h2 {
    font-family: 'Sansita', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    color: #5D4037;
}

.heading-style-h3 {
    font-family: 'Sansita', sans-serif;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #5D4037;
}

/* About Us Section */
.section-about-us {
    padding: 100px 0;
    background-color: #006400;
    color: white;
}

.about-us-wrapper {
    padding: 40px;
    border-radius: 10px;
}

.about-us-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.section-about-us .about-us-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.section-about-us .social-image {
    width: 100%;
    height: 400px; /* Set a fixed height */
    object-fit: cover; /* Ensures image covers the area without distortion */
    border-radius: 10px;
    transition: transform 0.3s;
}

.section-about-us .social-image:hover {
    transform: scale(1.02);
}

.social-image {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.social-image:hover {
    transform: scale(1.02);
}

/* Menu Section */
.section-our-menu {
    padding: 100px 0;
    background-color: #FFF8E1;
}

.menu-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.menu-item {
    width: 48%;
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.menu-img-wrap {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 20px;
    flex-shrink: 0;
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-description {
    flex-grow: 1;
}

.price-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FFD700;
    color: #5D4037;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
}

/* Testimonials Section */
.section-testimonials {
    padding: 100px 0;
    background-color: #5D4037;
    color: white;
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.testimonial-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    width: 60px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: italic;
    color: white;
}

.author-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.text-size-large {
    font-size: 24px;
    font-weight: bold;
}

.text-color-primary {
    color: rgba(255, 255, 255, 0.8);
}

/* Horizontal Features */
.three-column-horizontal-comp {
    padding: 60px 0;
}

.featured-wrapper.is-horizontal {
    display: flex;
    justify-content: space-around;
}

.featured-item.is-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
}

/* Booking Form Section */
.section-booking-form {
    padding: 100px 0;
    background-color: #C70039;
    color: white;
}

.text-color-alternate {
    color: white;
}

.text-color-white-60 {
    color: rgba(255, 255, 255, 0.8);
}

.booking-form {
    margin-top: 50px;
}

.form-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-component-col-1 {
    width: 100%;
}

.form-component-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

.form-input.is-text-area {
    height: 150px;
    resize: vertical;
}

.button.is-form-submit {
    border: none;
    cursor: pointer;
    background-color: #FFD700;
    color: #5D4037;
}

.button.is-form-submit:hover {
    background-color: #E6C200;
}

/* Social Bar */
.social-bar-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.social-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icon-wrap:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* Copyright */
.copyright-main-wrapper {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copyright-wrap {
    display: flex;
    gap: 20px;
}

.link-style {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s;
}

.link-style:hover {
    color: white;
}

.link-style.is-legal {
    color: rgba(255, 255, 255, 0.8);
}

.link-style.is-legal:hover {
    color: white;
}

/* Menu Page Specific Styles */
.menu-page-hero {
    background-color: #C70039;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.menu-page-hero h1 {
    margin-bottom: 20px;
    color: white;
}

.menu-categories {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.menu-category-button {
    padding: 12px 24px;
    background-color: #FFF8E1;
    border: 2px solid #C70039;
    color: #5D4037;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
}

.menu-category-button:hover,
.menu-category-button.active {
    background-color: #C70039;
    color: white;
}

.menu-section {
    padding: 60px 0;
    background-color: #FFF8E1;
}

.menu-section-title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.menu-section-title:after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: #FFD700;
    margin: 15px auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card-image {
    height: 200px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 20px;
    position: relative;
}

.menu-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.menu-card-title h3 {
    margin: 0;
    color: #5D4037;
}

.menu-card-price {
    background-color: #FFD700;
    color: #5D4037;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.menu-card-description {
    color: #5D4037;
    font-size: 16px;
    line-height: 1.6;
}

.dietary-info {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.dietary-tag {
    background-color: #006400;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
}

.spicy-level {
    display: flex;
    gap: 5px;
    margin-top: 15px;
    align-items: center;
}

.spicy-pepper {
    color: #C70039;
    font-size: 18px;
}

.menu-note {
    background-color: rgba(255, 215, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.mexico-map {
    margin: 60px auto;
    max-width: 600px;
    text-align: center;
}

.mexico-map h3 {
    margin-bottom: 20px;
}

/* Font Awesome Icon Styles */
.featured-icon-wrap i {
    font-size: 50px;
    color: #C70039;
}

.nav_menu_link i {
    font-size: 24px;
    color: #C70039;
    margin-right: 10px;
}

.social-icon-wrap i {
    font-size: 24px;
    color: white;
}

/* Quote icon for testimonials */
.fas.fa-quote-left.quote-icon {
    font-size: 60px;
    color: #FFD700;
    margin-bottom: 20px;
    display: block;
}

/* Spicy indicator using pepper icon */
.fas.fa-pepper-hot.spicy-pepper {
    color: #C70039;
    font-size: 18px;
}

/* Hover effects */
.social-icon-wrap:hover i {
    color: #FFD700;
}

.featured-item:hover .featured-icon-wrap i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Feature items in horizontal layout */
.featured-item.is-horizontal .featured-icon-wrap i {
    margin-bottom: 15px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .hero-grid,
    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }
    
    .featured-item {
        width: 48%;
    }

    .about-us-content {
        grid-template-columns: 1fr;
    }
    
    .heading-style-h1 {
        font-size: 46px;
    }
    
    .heading-style-h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 767px) {
    .menu-item {
        width: 100%;
    }
    
    .featured-item,
    .featured-item.is-horizontal {
        width: 100%;
    }
    
    .featured-wrapper.is-horizontal {
        flex-direction: column;
    }
    
    .heading-style-h1 {
        font-size: 38px;
    }
    
    .heading-style-h2 {
        font-size: 32px;
    }
    
    .heading-style-h3 {
        font-size: 24px;
    }
    
    .form-component-col-2 {
        grid-template-columns: 1fr;
    }
    
    .copyright-wrap {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .featured-icon-wrap i {
        font-size: 40px;
    }
}

@media screen and (max-width: 479px) {
    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .heading-style-h1 {
        font-size: 32px;
    }
    
    .heading-style-h2 {
        font-size: 28px;
    }
    
    .heading-style-h3 {
        font-size: 22px;
    }
    
    .testimonial-text {
        font-size: 22px;
    }
    
    .section-hero,
    .section-our-menu,
    .section-about-us,
    .section-testimonials,
    .section-booking-form {
        padding: 60px 0;
    }
    
    .featured-icon-wrap i {
        font-size: 36px;
    }
}
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

@media screen and (max-width: 479px) {
    .button-group {
        flex-direction: column;
        gap: 10px;
    }
}
/* ======= Gallery Page Styles ======= */

.gallery-hero {
    padding: 80px 0;
    background-color: #C70039;
    color: white;
    text-align: center;
}

.gallery-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.gallery-filter {
    padding: 40px 0;
    background-color: #FFF8E1;
}

.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-filter-button {
    padding: 12px 24px;
    background-color: #FFF8E1;
    border: 2px solid #C70039;
    color: #5D4037;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
}

.gallery-filter-button:hover,
.gallery-filter-button.active {
    background-color: #C70039;
    color: white;
}

.gallery-grid-section {
    padding: 60px 0;
    background-color: #FFF8E1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content h3 {
    margin: 0 0 5px 0;
    color: white;
    font-size: 18px;
}

.gallery-overlay-content p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.instagram-feed-section {
    padding: 80px 0;
    background-color: #5D4037;
    color: white;
    text-align: center;
}

.instagram-header {
    margin-bottom: 40px;
}

.instagram-header h2 {
    color: white;
    margin-bottom: 15px;
}

.instagram-tag {
    font-weight: bold;
    color: #FFD700;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.instagram-item {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: scale(1.03);
}

.instagram-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Lightbox Customization */
.lb-data .lb-details {
    font-family: 'Lato', sans-serif;
}

.lb-data .lb-caption {
    font-size: 16px;
    font-weight: bold;
}

.lb-data .lb-number {
    font-size: 14px;
}

/* ======= Contact Page Styles ======= */

.contact-hero {
    padding: 80px 0;
    background-color: #C70039;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.contact-section {
    padding: 80px 0;
    background-color: #FFF8E1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-wrapper,
.contact-form-wrapper {
    height: 100%;
}

.contact-info-card,
.contact-form-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    height: 100%;
}

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

.contact-icon-wrap {
    font-size: 24px;
    color: #C70039;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(199, 0, 57, 0.1);
    border-radius: 50%;
}

.contact-info-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.contact-info-content p {
    margin: 0;
}

.contact-link {
    color: #C70039;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #5D4037;
    text-decoration: underline;
}

.social-links {
    margin-top: 40px;
}

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

.social-icon-wrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5D4037;
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon-wrap:hover {
    background-color: #C70039;
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #5D4037;
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #C70039;
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    font-size: 14px;
}

.checkbox-label a {
    color: #C70039;
    text-decoration: underline;
}

.form-submit {
    margin-top: 10px;
}

.button.is-form-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.form-success-message {
    text-align: center;
    padding: 30px;
    background-color: rgba(0, 128, 0, 0.1);
    border-radius: 8px;
}

.form-success-message i {
    font-size: 48px;
    color: green;
    margin-bottom: 20px;
}

.form-success-message p {
    font-size: 18px;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: white;
}

.map-wrapper h2 {
    margin-bottom: 30px;
    text-align: center;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.map-directions {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-directions h3 {
    margin-bottom: 15px;
}

.map-directions p {
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #FFF8E1;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(199, 0, 57, 0.05);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 20px 0;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 767px) {
    .gallery-filter-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media screen and (max-width: 479px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
    
    .instagram-feed {
        grid-template-columns: 1fr 1fr;
    }
}
