/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FDCB00;
    --cream: #F0EADF;
    --dark-brown: #3C2F2B;
    --light-brown: #5A4A42;
    --white: #FFFFFF;
    --black: #000000;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Better touch targets for mobile */
a, button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(253, 203, 0, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(60, 47, 43, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: auto;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.brand-name {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--primary-yellow);
    font-family: 'Cinzel', 'Open Sans', system-ui, sans-serif;
    letter-spacing: 0.08em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--cream);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--light-brown) 100%);
    background-image: url('../images/back-cr.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Keep background still but softly blurred */
    filter: blur(4px);
    transform: scale(1.05);
    transform-origin: center;
    position: relative;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-text {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: rgba(60, 47, 43, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-title {
    font-size: 4.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
    font-family: 'Cinzel', 'Open Sans', system-ui, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@keyframes titleGlow {
    0% { text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(253, 203, 0, 0.3); }
    100% { text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(253, 203, 0, 0.6); }
}

.highlight-yellow {
    color: var(--primary-yellow);
}

.highlight-cream {
    color: var(--cream);
}

.hero-tagline {
    font-size: 1.375rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--cream);
}

.hero-description {
    font-size: 1.075rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--dark-brown);
    box-shadow: 0 4px 15px rgba(253, 203, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 203, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--dark-brown);
    transform: translateY(-3px);
}

.btn-contact {
    background: var(--primary-yellow);
    color: var(--dark-brown);
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(253, 203, 0, 0.4);
}

.btn-contact:hover {
    background: transparent;
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 0.975rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon {
    font-size: 1.075rem;
    transition: var(--transition);
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--cream);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--cream);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.arrow {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow span {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--cream);
    border-bottom: 2px solid var(--cream);
    transform: rotate(45deg);
    animation: arrowBounce 1.5s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrowBounce {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-left {
    animation: slideLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideRight 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f8f8, var(--white));
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-cta {
    text-align: center;
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-yellow), #ffd700);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(253, 203, 0, 0.3);
}

.menu-cta p {
    font-size: 1.075rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.175rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.075rem;
    color: var(--light-brown);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-image {
    transform: scale(1.1);
}

.menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(60, 47, 43, 0.95), transparent);
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.menu-item:hover .menu-overlay {
    transform: translateY(0);
}

.menu-overlay h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.menu-overlay p {
    font-size: 0.875rem;
    color: var(--cream);
}

/* Franchise Section */
.franchise-section {
    padding: 5rem 0;
    background: var(--dark-brown);
    color: var(--white);
}

.franchise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.franchise-text h2,
.franchise-text .section-title {
    color: var(--primary-yellow) !important;
    font-size: 2.475rem;
    margin-bottom: 2rem;
}

.franchise-highlight {
    background: linear-gradient(135deg, var(--primary-yellow), #ffd700);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(253, 203, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.offer-badge {
    display: block;
    font-size: 0.775rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
}

.offer-text {
    display: block;
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--dark-brown);
}

.franchise-description {
    font-size: 0.975rem;
    line-height: 1.8;
    margin: 2rem 0;
    color: var(--cream);
}

.franchise-benefits {
    list-style: none;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.975rem;
    color: var(--cream);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-yellow);
    color: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.franchise-cta {
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.175rem;
    font-weight: bold;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-align: center;
}

.franchise-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.franchise-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.franchise-image-wrapper:hover .franchise-img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), #f8f8f8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--dark-brown);
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--light-brown);
    font-size: 0.975rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.875rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(253, 203, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 0.825rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.875rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233C2F2B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(253, 203, 0, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-yellow);
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    font-size: 0.825rem;
    color: var(--light-brown);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-yellow);
    color: var(--dark-brown);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(253, 203, 0, 0.4);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    transition: var(--transition);
    font-weight: bold;
    animation: floatButton 3s ease-in-out infinite;
}

@keyframes floatButton {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(253, 203, 0, 0.6);
    background: #ffd700;
}

.contact-icon {
    font-size: 1.375rem;
}

.contact-text {
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-yellow);
    margin: 1rem 0;
    font-family: 'Cinzel', 'Open Sans', system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-links h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin: 0.5rem 0;
}

.footer-links ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-yellow);
}

.footer-info h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 234, 223, 0.2);
    color: var(--cream);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .hamburger {
        display: flex;
        width: 32px;
        height: 32px;
        padding: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 24px;
        height: 3px;
        background: var(--cream);
        transition: var(--transition);
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(60, 47, 43, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition);
        padding: 80px 0 2rem;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.075rem;
        padding: 0.8rem 1.5rem;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
        margin-top: 60px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .hero-title {
        font-size: 2.675rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-tagline {
        font-size: 0.975rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    .franchise-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-section {
        padding: 3rem 0;
    }

    .menu-cta {
        padding: 1.5rem;
        margin: 1.5rem 0 2rem;
    }

    .menu-cta p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        width: 100%;
        max-width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-large {
        padding: 1.1rem 2rem;
        font-size: 0.925rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        min-height: 48px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .contact-form {
        gap: 1.2rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .franchise-section {
        padding: 3rem 0;
    }

    .franchise-highlight {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .offer-text {
        font-size: 1.675rem;
    }

    .franchise-description {
        font-size: 0.875rem;
    }

    .benefit-item {
        font-size: 0.875rem;
    }

    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        padding: 1rem;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon {
        font-size: 1.675rem;
    }

    .contact-text {
        display: none;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .menu-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 2.075rem;
        letter-spacing: 0.08em;
    }

    .hero-tagline {
        font-size: 0.875rem;
    }

    .hero-description {
        font-size: 0.825rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .franchise-text h2 {
        font-size: 1.625rem;
    }

    .offer-text {
        font-size: 1.275rem;
    }

    .offer-badge {
        font-size: 0.675rem;
    }

    .hero-text {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .menu-cta {
        padding: 1.2rem;
    }

    .menu-cta p {
        font-size: 0.825rem;
    }

    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.825rem;
    }

    .floating-contact-btn {
        bottom: 15px;
        right: 15px;
        width: 56px;
        height: 56px;
    }

    .contact-icon {
        font-size: 1.475rem;
    }

    .menu-image-wrapper {
        height: 220px;
    }

    .footer-logo {
        height: 50px;
    }
}

/* Prevent zoom on input focus in iOS */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

