/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--cream-bg);
}

/* Color palette - Premium Goa Resort Theme */
:root {
    --teal-primary: #0E7C7B;
    --cream-bg: #FFF8EE;
    --soft-gold: #D4AF37;
    --text-primary: #2C2C2C;
    --text-muted: #6B6B6B;
    --white: #FFF8EE;
    --olive-green: #0E7C7B; /* Replaced with teal */
    --cream: #FFF8EE;
    --soft-brown: #6B6B6B; /* Replaced with muted text */
    --muted-gold: #D4AF37;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

h1 {
    font-size: 3rem;
    color: var(--teal-primary);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--teal-primary);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
nav {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--teal-primary);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--soft-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream-bg) 0%, #f0e6d6 100%);
    padding: 2rem 2rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 124, 123, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content (Left Column) */
.hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 124, 123, 0.1);
    color: var(--teal-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(14, 124, 123, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal-primary) 0%, #0a5c5b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1.4s ease-out;
}

.cta-primary {
    background: linear-gradient(135deg, var(--teal-primary) 0%, #0a5c5b 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 124, 123, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(14, 124, 123, 0.4);
}

.cta-secondary {
    background: var(--white);
    color: var(--teal-primary);
    padding: 1rem 2rem;
    border: 2px solid var(--teal-primary);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--teal-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Visual (Right Column) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-chef-image {
    width: 500px;
    height: 500px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--white);
    animation: fadeInScale 1s ease-out;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(14, 124, 123, 0.1);
}

.card-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Individual Card Positions */
.card-recipes {
    top: 15%;
    right: -15%;
    animation-delay: 0s;
}

.card-experience {
    bottom: 25%;
    left: -20%;
    animation-delay: 0.5s;
}

.card-specialty {
    top: 45%;
    right: -25%;
    animation-delay: 1s;
}

.card-rating {
    bottom: 10%;
    right: -10%;
    animation-delay: 1.5s;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Section styles */
section {
    padding: 4rem 2rem;
}

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

/* Featured Content */
.featured-content {
    background-color: var(--cream-bg);
}

.featured-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.recipe-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card-content {
    padding: 1.5rem;
}

.recipe-category {
    background-color: var(--teal-primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.recipe-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--teal-primary);
}

.recipe-description {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* In My Kitchen */
.kitchen-categories {
    background-color: var(--white);
    text-align: center;
}

.kitchen-categories h2 {
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-item {
    background-color: var(--teal-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-5px);
    background-color: var(--soft-gold);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-icon img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.category-item:hover .category-icon img {
    transform: scale(1.05);
}

.category-name {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Modern Gallery Section */
.gallery {
    background-color: var(--cream-bg);
    padding: 4rem 0;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--teal-primary);
}

/* Carousel Styles */
.gallery-carousel {
    margin-bottom: 4rem;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.carousel-track {
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    min-width: 100%;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.carousel-slide:not(.active) img {
    transform: scale(0.95);
    filter: brightness(0.7) blur(1px);
}

.carousel-slide.active img {
    transform: scale(1);
    filter: brightness(1) blur(0);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.carousel-slide.active .carousel-caption {
    transform: translateY(0);
    opacity: 1;
}

.carousel-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Progress Bar */
.carousel-progress {
    margin-top: 1rem;
    height: 3px;
    background: rgba(14, 124, 123, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--teal-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 12.5%; /* 1/8 for 8 images */
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(14, 124, 123, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--teal-primary);
    transform: scale(1.2);
}

/* Masonry Grid */
.gallery-masonry {
    margin-top: 4rem;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 12px;
    grid-auto-flow: dense;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.masonry-item.active {
    box-shadow: 0 0 0 3px var(--teal-primary);
    transform: scale(0.98);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
}

.masonry-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.masonry-overlay span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Masonry Item Sizes */
.masonry-item--small {
    grid-row: span 1;
    grid-column: span 1;
}

.masonry-item--large {
    grid-row: span 2;
    grid-column: span 2;
}

.masonry-item--tall {
    grid-row: span 2;
    grid-column: span 1;
}

.masonry-item--wide {
    grid-row: span 1;
    grid-column: span 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-container {
        border-radius: 16px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
    }
    
    .carousel-caption h4 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-auto-rows: 150px;
        gap: 8px;
    }
    
    .masonry-item--large {
        grid-row: span 2;
        grid-column: span 1;
    }
    
    .masonry-item--wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .masonry-overlay {
        padding: 1rem;
    }
    
    .masonry-overlay h4 {
        font-size: 1rem;
    }
    
    .masonry-overlay span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery-carousel {
        margin-bottom: 3rem;
    }
    
    .carousel-container {
        border-radius: 12px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h4 {
        font-size: 1rem;
    }
    
    .carousel-caption p {
        font-size: 0.8rem;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 6px;
    }
    
    .masonry-item--small,
    .masonry-item--large,
    .masonry-item--tall,
    .masonry-item--wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--teal-primary) 0%, #0e7c7b 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--teal-primary);
}

.newsletter-form input::placeholder {
    color: rgba(14, 124, 123, 0.6);
}

.newsletter-form button {
    background-color: var(--soft-gold);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--cream-bg) 0%, #f8f9fa 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--teal-primary);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--teal-primary);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-left {
    flex: 2;
    display: flex;
    gap: 3rem;
}

.footer-description {
    flex: 1;
    max-width: 300px;
}

.footer-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    flex: 1;
}

.footer-form {
    flex: 1;
    max-width: 400px;
    margin-left: auto;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Links */
.footer-links h3 {
    margin-bottom: 1rem;
    color: var(--cream-bg);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--soft-gold);
}

.footer-form {
    flex: 1;
    max-width: 400px;
}

.footer-form .ml-form-embedContainer {
    width: 100% !important;
}

.footer-form .ml-form-embedWrapper {
    background-color: var(--teal-primary);
    border-radius: 12px;
    padding: 20px;
}

.footer-form .ml-form-embedContent h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-form .ml-form-embedContent p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-form .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--teal-primary);
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 0.9rem;
}

.footer-form .primary {
    background-color: var(--soft-gold);
}

/* Contact Info */
.contact-info {
    width: 100%;
}

.contact-content h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-details {
    flex: 1;
    text-align: left;
}

.contact-details strong {
    color: var(--soft-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-details a:hover {
    color: var(--white);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-content h4 {
        font-size: 1.2rem;
    }
    
    .contact-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-details strong {
        font-size: 1rem;
    }
    
    .contact-details a {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        width: 100%;
    }
    
    .contact-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-details {
        text-align: left;
        width: 100%;
    }
    
    .contact-details strong {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .contact-content h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .contact-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-details strong {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-details a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .contact-content h4 {
        font-size: 0.95rem;
    }
    
    .contact-content p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-details strong {
        font-size: 0.85rem;
    }
    
    .contact-details a {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-chef-image {
        width: 450px;
        height: 450px;
    }
    
    .floating-card {
        min-width: 180px;
        padding: 1rem;
    }
    
    .card-recipes {
        top: 10%;
        right: -8%;
    }
    
    .card-experience {
        bottom: 20%;
        left: -12%;
    }
    
    .card-specialty {
        top: 45%;
        right: -18%;
    }
    
    .card-rating {
        bottom: 5%;
        right: -5%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    

    .hero-chef-image {
        width: 350px;
        height: 350px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-chef-image {
        width: 280px;
        height: 280px;
        border-radius: 16px;
    }
    
    .cta-primary, .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        justify-content: center;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-left {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-form {
        margin-left: 0;
        max-width: 100%;
    }

    .footer-description {
        max-width: 100%;
    }
}