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

/* Smooth scrolling and offset for anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed navbar */
}

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6914;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-light: #e5e5e5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1a0f08;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    margin: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    display: block !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: var(--secondary-color);
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: none;
}

.hero-image-placeholder {
    width: 400px;
    height: 500px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.stat h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--bg-white);
}

body.dark-mode .gallery {
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.gallery-content {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.gallery-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.gallery-info {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: var(--text-light);
}

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

.gallery-item {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: var(--transition);
    border: none;
    padding: 0;
    margin: 0;
}

body.dark-mode .gallery-item {
    background: transparent;
    border: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.image-placeholder.large {
    height: 300px;
}

.placeholder-text {
    padding: 1rem;
}

.item-info {
    padding: 1.5rem;
}

.item-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.item-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: none;
    background-color: #000;
    padding: 0;
    margin: 0;
    display: block !important;
    border: none !important;
    outline: none !important;
    will-change: auto;
    opacity: 1 !important;
    visibility: visible !important;
}

body.dark-mode .gallery-image {
    background-color: #000 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any potential white space around images */
.gallery-item img {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Full width gallery item */
.gallery-item.full-width {
    grid-column: 1 / -1;
    max-width: 100%;
}

.gallery-item.full-width .gallery-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

/* Remove any potential background from parent elements */
#inspirations, 
.gallery-content {
    background: transparent !important;
}

/* Force dark mode background on gallery section */
body.dark-mode #gallery,
body.dark-mode #inspirations,
body.dark-mode .gallery-content {
    background: #000 !important;
}

/* Ensure gallery item content has no background */
.gallery-item .item-info {
    background: transparent;
    padding: 15px 0 0;
}

body.dark-mode .gallery-item .item-info {
    background: transparent;
    color: var(--text-light);
}

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

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

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

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

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

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

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

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

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

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

.business-reg {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-light);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-placeholder {
        width: 300px;
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 15px 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
    }
}

/* Visionary Page Styles */
.visionary-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c1810 0%, #8b6914 100%);
    color: white;
    text-align: center;
}

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

.visionary-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
}

.visionary-subtitle {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.visionary-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.vision-philosophy {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.vision-example {
    text-align: center;
}

.example-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-medium);
}

.example-caption {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.vision-examples {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.example-item {
    background-color: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.example-image {
    height: 250px;
    overflow: hidden;
}

.example-content {
    padding: 2rem;
}

.example-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.example-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.vision-connection {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.connection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.connection-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.connection-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.connection-step h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.connection-step p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.vision-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.nav-link.active {
    color: var(--secondary-color);
}

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

/* Responsive Design for Visionary Page */
@media (max-width: 768px) {
    .visionary-title {
        font-size: 2.5rem;
    }
    
    .visionary-subtitle {
        font-size: 1.4rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .connection-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 250px;
    }
}

/* Transformation Videos Section */
.transformation-videos {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.video-item {
    background-color: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background: linear-gradient(45deg, #1a0f08, var(--primary-color));
}

.play-button {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    opacity: 1;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

.video-info {
    padding: 2rem;
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.video-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Video Element Styling */
.transformation-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    background-color: #000;
}

.transformation-video:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Responsive Design for Videos */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-container {
        height: 200px;
    }
    
    .play-button {
        font-size: 2.5rem;
    }
}

/* Image styling for visionary and gallery pages */
.vision-image,
.gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

/* Early Inspirations - show full pictures */
#inspirations .gallery-image {
    object-fit: contain;
    background: #f8f9fa;
    height: 400px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.dark-mode #inspirations .gallery-image {
    background: #000 !important;
}

.vision-image {
    box-shadow: var(--shadow-medium);
}

.example-img {
    border-radius: 10px;
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: #f8f9fa;
}

.example-img:hover {
    transform: scale(1.02);
}

/* Vision Categories */
.vision-category {
    margin-bottom: 60px;
}

.collaboration-gallery h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.collaboration-gallery h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Dark mode specific styles for collaboration section */
body.dark-mode .collab-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
}

body.dark-mode .image-label {
    color: var(--text-light);
    background-color: rgba(30, 30, 30, 0.8);
}

body.dark-mode .transformation-arrow {
    color: var(--text-light);
}

body.dark-mode .collaboration-gallery h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

body.dark-mode .collaboration-gallery img {
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
    display: block !important;
}

body.dark-mode .collab-grid img {
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
    display: block !important;
}

body.dark-mode .before-after img {
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
    display: block !important;
}

body.dark-mode .original-dish img {
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
    display: block !important;
}

body.dark-mode .abstract-art img {
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
    display: block !important;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.category-subtitle {
    color: var(--text-color);
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.vision-category .examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vision-category .example-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.vision-category .example-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    position: static !important;
    z-index: 1 !important;
}

/* Language Toggle and Dark Mode */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-logo img {
    height: 70px !important;
    width: auto !important;
    object-fit: contain;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    filter: none !important;
}

.logo-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-toggle {
    display: flex;
    gap: 0.5rem;
    margin-right: 0;
}

.lang-btn {
    padding: 0.5rem 0.8rem;
    text-decoration: none;
    color: var(--text-color);
    background-color: #D4AF37;
    border: 1px solid #D4AF37;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.lang-btn:hover {
    opacity: 1;
    background-color: #B8941F;
    color: white;
    transform: translateY(-1px);
}

.lang-btn.active {
    background-color: #D4AF37;
    color: white;
    border-color: #D4AF37;
    opacity: 1;
    font-weight: 600;
}

/* Dark mode language button styles */
body.dark-mode .lang-btn {
    background-color: #D4AF37;
    color: #1A1A1A;
    border: 1px solid #D4AF37;
    opacity: 0.8;
}

body.dark-mode .lang-btn:hover {
    opacity: 1;
    background-color: #B8941F;
    color: white;
}

body.dark-mode .lang-btn.active {
    background-color: #D4AF37;
    color: #1A1A1A;
    opacity: 1;
    font-weight: 600;
}

.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.1);
}

.dark-mode-toggle:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.dark-mode-toggle .sun-icon {
    display: block;
}

.dark-mode-toggle .moon-icon {
    display: none;
}

/* Dark Mode Styles */
body.dark-mode {
    --primary-color: #d4af37; /* Gold accent color */
    --text-dark: #f5f5f5;
    --text-light: #e0e0e0;
    --text-muted: #b0b0b0;
    --bg-light: #1e1e1e;
    --bg-white: #121212;
    --bg-lighter: #2d2d2d;
    --border-light: #444;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
    
    background-color: var(--bg-white);
    color: var(--text-light);
}

/* Ensure all elements with white backgrounds use dark mode colors */
body.dark-mode .nav-menu {
    background-color: var(--bg-white);
}

body.dark-mode .highlight,
body.dark-mode .chef-profile,
body.dark-mode .collab-item,
body.dark-mode .testimonial,
body.dark-mode .process-step,
body.dark-mode .contact-form,
body.dark-mode .gallery-tab,
body.dark-mode .gallery-tab.active {
    background-color: var(--bg-light) !important;
    color: var(--text-light);
    border-color: var(--border-light);
}

/* Ensure text remains readable in dark mode */
body.dark-mode .testimonial-text,
body.dark-mode .process-step p,
body.dark-mode .contact-form p,
body.dark-mode .gallery-description {
    color: var(--text-light) !important;
}

/* Ensure form elements look good in dark mode */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: var(--bg-lighter);
    border-color: var(--border-light);
    color: var(--text-light);
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: var(--text-muted);
}

/* Ensure buttons are visible in dark mode */
body.dark-mode .btn {
    background-color: var(--primary-color);
    color: #000;
}

body.dark-mode .btn:hover {
    background-color: #e6c05e;
    color: #000;
}

/* Ensure images maintain their appearance in dark mode */
body.dark-mode img:not(.nav-logo img):not(.collaboration-gallery img):not(.collab-grid img) {
    filter: brightness(0.95) contrast(1.05);
    transition: filter 0.3s ease;
}

/* Exclude logo from all image filters in both modes */
.nav-logo img {
    filter: none !important;
    transition: none !important;
}

body.dark-mode .nav-logo img {
    filter: none !important;
    transition: none !important;
}

/* Fix for image hover effects in dark mode */
body.dark-mode .clickable-image:hover {
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.dark-mode .navbar {
    background-color: #1e1e1e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode .nav-link {
    color: #f5f5f5;
}

.dark-mode .nav-link:hover,
.dark-mode .nav-link.active {
    color: #d4af37;
}

/* Ensure all collaboration images are visible in all modes */
.collaboration-gallery img,
.collab-grid img,
.before-after img,
.original-dish img,
.abstract-art img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    filter: none !important;
}

/* Ensure logo text is visible in both modes */
.nav-logo h1 {
    color: var(--primary-color) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.dark-mode .nav-logo h1 {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Ensure logo image is stable in dark mode */
.dark-mode .nav-logo img {
    filter: none !important;
    opacity: 1 !important;
}

.dark-mode .hero {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    color: #f5f5f5;
}

/* Section headings in dark mode */
.dark-mode .section-title,
.dark-mode h1, 
.dark-mode h2, 
.dark-mode h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.dark-mode .section-subtitle,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
    color: var(--text-light);
}

.dark-mode .category-title,
.dark-mode .example-content h4 {
    color: var(--primary-color);
}

.dark-mode .example-content p {
    color: var(--text-muted);
}

.dark-mode .gallery-tab {
    color: #f5f5f5;
    background-color: #2d2d2d;
    border: 1px solid #444;
}

.dark-mode .gallery-tab.active {
    background-color: #d4af37;
    color: #1e1e1e;
}

.dark-mode .gallery-item {
    background-color: #1e1e1e;
    border: 1px solid #444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dark-mode .gallery-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dark-mode .process-step {
    background-color: #1e1e1e;
    border: 1px solid #444;
}

.dark-mode .contact-form input,
.dark-mode .contact-form textarea {
    background-color: #2d2d2d;
    border: 1px solid #444;
    color: #f5f5f5;
}

.dark-mode .contact-form input::placeholder,
.dark-mode .contact-form textarea::placeholder {
    color: #999;
}

.dark-mode .contact-form button {
    background-color: #d4af37;
    color: #1e1e1e;
}

.dark-mode .contact-form button:hover {
    background-color: #e8c25a;
}

.dark-mode footer {
    background-color: #1e1e1e;
    color: #f5f5f5;
}

.dark-mode .footer-bottom {
    border-top: 1px solid #444;
}

/* Toggle button in dark mode */
.dark-mode .dark-mode-toggle {
    background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .dark-mode-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dark-mode .dark-mode-toggle .sun-icon {
    display: none;
}

.dark-mode .dark-mode-toggle .moon-icon {
    display: block;
}

/* Click-to-enlarge functionality */
.clickable-image {
    cursor: pointer;
    transition: var(--transition);
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

/* Animations for image overlay */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Sections with proper spacing for anchor navigation */
section {
    padding: 120px 0 80px 0; /* Extra top padding to account for fixed navbar */
}

/* René Mathieu Collaboration Section */

.collaboration-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

body.dark-mode .collaboration-section {
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
}

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

.chef-credentials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.michelin-star {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.restaurant {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
}

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

.collaboration-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.story-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-color);
}

body.dark-mode .story-text p {
    color: var(--text-light);
}

.collaboration-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.highlight {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--accent-color);
}

.highlight h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

.chef-profile {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    height: fit-content;
}

.chef-info h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.chef-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.restaurant-name {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 15px;
}

.chef-description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.collaboration-gallery h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.collab-grid {
    display: grid;
    gap: 60px;
    margin-bottom: 80px;
}

.collab-item {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collab-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

.original-dish,
.abstract-art {
    position: relative;
    width: 100%;
    height: 600px; /* Increased height for bigger images */
    overflow: hidden;
    border-radius: 10px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.original-dish img,
.abstract-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transformation-arrow {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
    padding: 0 20px;
}

.image-label {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.collab-info {
    text-align: center;
    padding: 30px 0 0;
}

.collab-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.collab-info p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.collab-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.original-dish,
.abstract-art {
    position: relative;
    width: 100%;
    height: 350px; /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 10px;
    background-color: #000; /* Black background for image containers */
}

.original-dish img,
.abstract-art img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure entire image is visible */
    padding: 10px; /* Add some padding around images */
}

.transformation-arrow {
    font-size: 2rem;
    color: var(--text-color);
    text-align: center;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
}

.original-dish, .abstract-art {
    text-align: center;
}

.original-dish img, .abstract-art img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.image-label {
    margin-top: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.transformation-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
}

.collab-info {
    text-align: center;
}

.collab-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.collab-info p {
    color: var(--text-color);
    line-height: 1.6;
}

.collaboration-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.collaboration-cta h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.collaboration-cta p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design for Collaboration Section */
@media (max-width: 768px) {
    .collaboration-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collaboration-highlights {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .chef-credentials {
        flex-direction: column;
        gap: 10px;
    }
}
