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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--forest-green);
    overflow-x: hidden;
    background-color: var(--forest-green);
}

/* Custom Properties */
:root {
    --forest-green: #0B2E16;
    --bone-beige: #F7E6C4;
    --charcoal: #2c2c2c;
    --ash-black: #1a1a1a;
    --text-dark: var(--forest-green);
    --text-light: #666;
    --gradient-primary: linear-gradient(135deg, var(--bone-beige) 0%, #e6d4a8 100%);
    --gradient-dark: linear-gradient(135deg, var(--forest-green) 0%, var(--ash-black) 100%);
    --gradient-accent: linear-gradient(135deg, var(--bone-beige) 0%, #d4c4a0 100%);
    --shadow-soft: 0 10px 30px rgba(11, 46, 22, 0.1);
    --shadow-strong: 0 20px 40px rgba(11, 46, 22, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--forest-green);
    overflow-x: hidden;
    background-color: var(--forest-green);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 46, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(247, 230, 196, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bone-beige);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--bone-beige);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--bone-beige);
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bone-beige);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--bone-beige);
    transition: var(--transition);
}

/* Mobile menu styles */
.nav-menu.active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 46, 22, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(11, 46, 22, 0.2);
    border-top: 1px solid rgba(247, 230, 196, 0.1);
}

.nav-menu.active .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(247, 230, 196, 0.1);
    text-align: center;
}

.nav-menu.active .nav-link:last-child {
    border-bottom: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--forest-green);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar height */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(247, 230, 196, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 230, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(247, 230, 196, 0.05) 0%, transparent 50%);
    animation: liquidMove 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(247, 230, 196, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(247, 230, 196, 0.02) 50%, transparent 70%);
    animation: glassShimmer 8s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--bone-beige);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(11, 46, 22, 0.3);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--bone-beige), transparent);
    animation: titleUnderline 2s ease-in-out infinite;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.title-line:nth-child(4) { animation-delay: 0.8s; }

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(247, 230, 196, 0.9);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1s;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bone-beige) 0%, #e6d4a8 100%);
    color: var(--forest-green);
    box-shadow: 
        0 10px 30px rgba(247, 230, 196, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(247, 230, 196, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(247, 230, 196, 0.4),
        0 5px 15px rgba(11, 46, 22, 0.2);
    background: linear-gradient(135deg, #e6d4a8 0%, var(--bone-beige) 100%);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--bone-beige);
    border: 2px solid rgba(247, 230, 196, 0.3);
}

.btn-secondary:hover {
    background: rgba(247, 230, 196, 0.1);
    border-color: rgba(247, 230, 196, 0.5);
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-container {
    position: relative;
    width: 400px;
    height: 500px;
    background: rgba(247, 230, 196, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(247, 230, 196, 0.2);
    box-shadow: 
        0 25px 45px rgba(11, 46, 22, 0.2),
        inset 0 1px 0 rgba(247, 230, 196, 0.1);
    overflow: hidden;
    animation: glassFloat 6s ease-in-out infinite;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.2) saturate(1.1);
}

/* Mobile video optimizations */
@media (max-width: 768px) {
    .video-background video {
        filter: brightness(0.6) contrast(1.3) saturate(1.2);
    }
    
    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(11, 46, 22, 0.5) 0%,
            rgba(11, 46, 22, 0.3) 50%,
            rgba(11, 46, 22, 0.7) 100%
        );
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 46, 22, 0.4) 0%,
        rgba(11, 46, 22, 0.2) 50%,
        rgba(11, 46, 22, 0.6) 100%
    );
    z-index: 2;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(247, 230, 196, 0.1),
        transparent,
        rgba(247, 230, 196, 0.05),
        transparent
    );
    animation: glassRotate 10s linear infinite;
}

.glass-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
}

.glass-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bone-beige);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(11, 46, 22, 0.3);
}

.glass-subtitle {
    font-size: 1.1rem;
    color: rgba(247, 230, 196, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.glass-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.glass-stat {
    text-align: center;
}

.glass-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bone-beige);
    display: block;
    margin-bottom: 5px;
}

.glass-stat-label {
    font-size: 0.9rem;
    color: rgba(247, 230, 196, 0.7);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.floating-item {
    position: absolute;
    font-size: 3rem;
    animation: float 8s ease-in-out infinite;
    opacity: 0.6;
    filter: drop-shadow(0 4px 8px rgba(247, 230, 196, 0.2));
    transition: all 0.3s ease;
    color: var(--bone-beige);
}

.floating-item:nth-child(1) {
    animation: flicker 2s ease-in-out infinite alternate;
}

.floating-item:nth-child(1) { 
    top: 10%; 
    left: 10%; 
    animation-delay: 0s;
    animation-duration: 6s;
}
.floating-item:nth-child(2) { 
    top: 60%; 
    right: 20%; 
    animation-delay: 2s;
    animation-duration: 7s;
}
.floating-item:nth-child(3) { 
    bottom: 20%; 
    left: 30%; 
    animation-delay: 4s;
    animation-duration: 8s;
}
.floating-item:nth-child(4) { 
    top: 30%; 
    right: 10%; 
    animation-delay: 1s;
    animation-duration: 6.5s;
}
.floating-item:nth-child(5) { 
    top: 70%; 
    left: 60%; 
    animation-delay: 3s;
    animation-duration: 7.5s;
}
.floating-item:nth-child(6) { 
    top: 45%; 
    left: 50%; 
    animation-delay: 1.5s;
    animation-duration: 6.8s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
    text-align: center;
}

.scroll-text {
    color: var(--bone-beige);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--bone-beige);
    border-radius: 50%;
    animation: bounce 2s infinite;
    margin: 0 auto;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: var(--bone-beige);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    max-width: 600px;
    margin: 0 auto;
}

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

.menu-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--forest-green);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.menu-item-image {
    height: 200px;
    background: var(--forest-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--forest-green);
}

.menu-item-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-green);
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--forest-green);
    color: var(--bone-beige);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bone-beige);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.story-image {
    height: 400px;
    background: var(--bone-beige);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--forest-green);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bone-beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--forest-green);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--forest-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bone-beige);
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--forest-green);
}

.contact-details p {
    color: var(--text-light);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--forest-green);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-green);
}

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

/* Footer */
.footer {
    background: var(--forest-green);
    color: var(--bone-beige);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(247, 230, 196, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bone-beige);
    opacity: 1;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(247, 230, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--bone-beige);
    color: var(--forest-green);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(247, 230, 196, 0.2);
    color: rgba(247, 230, 196, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes flicker {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes liquidMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-10px, -15px) scale(1.05);
    }
    50% {
        transform: translate(15px, -10px) scale(0.95);
    }
    75% {
        transform: translate(-5px, 15px) scale(1.02);
    }
}

@keyframes glassShimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.6;
        transform: translateX(100%);
    }
}

@keyframes glassFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

@keyframes glassRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes titleUnderline {
    0%, 100% {
        width: 100px;
        opacity: 0.8;
    }
    50% {
        width: 150px;
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: 100vh;
        padding: 20px 0 0 0;
        padding-top: 70px; /* Account for mobile navbar height */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .glass-container {
        width: 320px;
        height: 400px;
    }
    
    .glass-title {
        font-size: 2rem;
    }
    
    .glass-subtitle {
        font-size: 1rem;
    }
    
    .glass-stats {
        gap: 20px;
    }
    
    .glass-stat-number {
        font-size: 1.5rem;
    }
    
    .floating-item {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-image {
        height: 300px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        height: 60px;
    }
    
    .hero {
        padding-top: 60px; /* Account for smaller mobile navbar height */
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
    }
    
    .glass-container {
        width: 280px;
        height: 350px;
    }
    
    .glass-content {
        padding: 25px 20px;
    }
    
    .glass-title {
        font-size: 1.8rem;
    }
    
    .glass-subtitle {
        font-size: 0.9rem;
    }
    
    .glass-stats {
        gap: 15px;
    }
    
    .glass-stat-number {
        font-size: 1.3rem;
    }
    
    .glass-stat-label {
        font-size: 0.8rem;
    }
    
    .floating-item {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-paragraph {
        font-size: 0.95rem;
    }
    
    .story-image {
        height: 250px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .menu-item-content {
        padding: 20px;
    }
    
    .menu-item-content h3 {
        font-size: 1.3rem;
    }
    
    .menu-item-content p {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .glass-container {
        width: 260px;
        height: 320px;
    }
    
    .glass-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 0.85rem;
        padding: 12px 16px;
    }
}

/* Touch-friendly optimizations */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        min-height: 44px; /* iOS minimum touch target */
        touch-action: manipulation;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu-item {
        touch-action: manipulation;
    }
    
    .contact-form input,
    .contact-form textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Disable hover effects on mobile */
    .btn-primary:hover,
    .btn-secondary:hover,
    .menu-item:hover,
    .nav-link:hover,
    .social-link:hover {
        transform: none;
    }
    
    /* Optimize animations for mobile */
    .floating-item {
        animation-duration: 12s; /* Slower animations for better performance */
    }
    
    .glass-container {
        animation-duration: 8s;
    }
    
    .hero::before {
        animation-duration: 30s;
    }
    
    .hero::after {
        animation-duration: 12s;
    }
} 