/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --bg-color: #121212;
    /* Darker, almost black */
    --text-color: #f4f4f4;
    --accent-color: #FF8C00;
    /* Dark Orange */
    --accent-gradient: linear-gradient(135deg, #FF8C00, #FF4500);
    /* Vibrant Orange Gradient */
    --secondary-bg: #1e1e1e;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/marble.jpg');
    /* Premium Black Marble Texture */
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Layout --- */
section {
    padding: 4rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2rem;
    display: inline-block;
    padding: 8px 25px;
    background: var(--secondary-bg);
    border-radius: 50px;
    border: 2px solid var(--accent-color);
}

/* --- Header & Navigation --- */
header {
    background-color: rgba(18, 18, 18, 0.98);
    padding: 0.8rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.logo h1 {
    font-size: 1.2rem;
    margin: 0;
    letter-spacing: 2px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta {
    background: var(--accent-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.header-cta:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.social-links-header {
    display: none;
    /* Hidden on small mobile */
}

.mobile-menu-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-color);
}

nav ul {
    display: none;
    /* Hidden on mobile by default */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--secondary-bg);
    padding: 5rem 2rem;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

nav ul.show {
    display: flex;
    right: 0;
}

nav li {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    padding-bottom: 0.5rem;
}

nav a {
    font-size: 1.15rem;
    font-family: 'Oswald', sans-serif;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover,
nav a.active {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1541518763669-27fef04b14ea?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    margin-top: 60px;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-gradient);
    color: var(--white);
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

/* About Section */
.about {
    background-color: var(--secondary-bg);
    text-align: center;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.2)),
        linear-gradient(45deg, rgba(0, 0, 0, 0.2) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.2));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.about p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: #ddd;
}

/* --- Menu Page Styles --- */
.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    color: white;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 5px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    transform: skew(-5deg);
    position: relative;
    z-index: 2;
}

.menu-cat-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 auto 2rem;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.menu-cat-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.menu-item {
    background: rgba(30, 30, 30, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
    border-color: #fff;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover .item-title {
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #444;
    position: relative;
    z-index: 1;
}

.item-title {
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.item-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    background: #333;
    padding: 3px 8px;
    border-radius: 5px;
}

.item-desc {
    font-size: 0.95rem;
    color: #ccc;
    position: relative;
    z-index: 1;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-bg);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: rgba(255, 69, 0, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.contact-info-item p {
    font-size: 1rem;
    font-weight: bold;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--accent-color);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 2px solid #333;
    color: var(--text-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #333;
}

/* --- Social Feed Section --- */
.social-feed {
    padding: 4rem 5%;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    text-align: center;
}

.social-buttons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.insta-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 150px;
    cursor: pointer;
    border: 2px solid rgba(255, 140, 0, 0.1);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 140, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover img {
    transform: scale(1.15);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* --- Footer Section --- */
footer {
    background-color: var(--secondary-bg);
    padding: 3rem 5%;
    text-align: center;
    border-top: 2px solid var(--accent-color);
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* --- Floating Elements (WhatsApp Enhanced) --- */
.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.whatsapp-bubble {
    background: white;
    color: #333;
    padding: 10px 18px;
    border-radius: 15px 15px 0 15px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: bubbleFadeIn 0.5s ease-out 2s both, bubbleBounce 3s infinite 5s;
    border: 1px solid #eee;
    max-width: 220px;
    text-align: right;
    display: none;
    /* Hide on very small screens, show on min-width 768px */
}

.whatsapp-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    border-left: 10px solid transparent;
    border-top: 10px solid white;
}

.whatsapp-float {
    background: #25D366;
    color: white;
    padding: 18px;
    /* Bigger button */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    /* Bigger icon */
    transition: var(--transition);
    position: relative;
}

/* Double Pulse Animation */
.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: doublePulse 2s infinite;
}

.whatsapp-float::after {
    animation-delay: 1s;
}

.whatsapp-float span {
    display: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128C7E;
}

@keyframes doublePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes bubbleFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bubbleBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@media (min-width: 768px) {
    .whatsapp-bubble {
        display: block;
    }

    .whatsapp-float {
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-float span {
        display: inline;
        margin-left: 10px;
        font-weight: bold;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
    }
}


/* --- Filter Buttons --- */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 0 5%;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 15px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-color);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

/* --- Shop Highlight Section --- */
.shop-highlight {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem 5%;
}

.shop-container {
    display: grid;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.shop-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-color);
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.shop-image:hover img {
    transform: scale(1.05);
}

.shop-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1rem;
    color: white;
}

.shop-overlay span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.shop-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.shop-details p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.shop-features {
    list-style: none;
    margin-bottom: 2rem;
}

.shop-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.shop-features i {
    color: var(--accent-color);
}

.shop-address-box {
    background: var(--accent-gradient);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: bold;
}

@media (min-width: 768px) {
    .shop-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
    }

    .shop-image {
        height: 400px;
    }
}


/* --- ANIMATIONS --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.hero-content,
.section-title,
.about,
.contact-info,
.contact-form,
.menu-grid,
.menu-category,
.menu-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 4rem 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-card .user {
    display: block;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

/* Grid container itself should be visible to let children animate */
.menu-grid,
.testimonials-grid {
    opacity: 1;
    transform: none;
}


/* --- TABLET & DESKTOP ENHANCEMENTS --- */
@media (min-width: 768px) {
    header {
        padding: 1rem 8%;
    }

    .logo h1 {
        font-size: 2.2rem;
        letter-spacing: 3px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .header-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .social-links-header {
        display: flex;
        gap: 1rem;
    }

    .social-links-header a {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .social-links-header a:hover {
        color: white;
        transform: translateY(-3px);
    }

    .mobile-menu-btn {
        display: none;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        right: 0;
    }

    nav li {
        margin: 0 1rem;
        border: none;
        padding-bottom: 0;
    }

    nav a {
        font-size: 1.1rem;
    }

    .hero {
        height: 100vh;
        padding: 0 20px;
    }

    .hero-content h2 {
        font-size: 4.5rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }

    .hero-content p {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
        letter-spacing: 2px;
    }

    .btn {
        padding: 15px 40px;
    }

    section {
        padding: 5rem 5%;
    }

    .section-title {
        margin-bottom: 4rem;
    }

    .section-title h2 {
        font-size: 3rem;
        padding: 10px 30px;
    }

    .menu-category {
        margin-bottom: 5rem;
    }

    .menu-category h3 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        padding: 10px 40px;
        border-radius: 0 20px 0 20px;
        transform: skew(-10deg);
    }

    .menu-cat-img {
        max-width: 600px;
        height: 300px;
        border: 3px solid var(--accent-color);
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }

    .menu-item {
        padding: 2rem;
        border-radius: 15px;
        border-left: 5px solid var(--accent-color);
    }

    .item-header {
        margin-bottom: 1rem;
    }

    .item-title {
        font-size: 1.4rem;
    }

    .item-price {
        font-size: 1.2rem;
        padding: 5px 10px;
    }

    .item-desc {
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-info-item {
        margin-bottom: 2.5rem;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .contact-info-item i {
        font-size: 2rem;
        padding: 15px;
    }

    .contact-info-item p {
        font-size: 1.2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        margin-bottom: 0.8rem;
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 15px;
        font-size: 1rem;
    }

    .social-feed {
        padding: 6rem 10%;
    }

    .social-buttons {
        gap: 1.5rem;
    }

    .social-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .insta-item {
        height: 250px;
        border-radius: 12px;
    }

    .insta-overlay {
        font-size: 2.5rem;
    }

    footer {
        padding: 4rem 10%;
    }

    .footer-social {
        gap: 2rem;
    }

    .footer-social a {
        font-size: 1.8rem;
    }

    .whatsapp-float {
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 1.2rem;
    }

    .whatsapp-float span {
        display: inline;
        margin-left: 8px;
        font-weight: bold;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
    }

    .menu-filters {
        gap: 1rem;
    }

    .filter-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .menu-note {
        font-size: 1rem;
    }

    .promo-banner {
        font-size: 1.2rem;
    }
}