:root {
    --primary-color: #8B4513e4;     /* Saddle brown - earthy like potato skin */
    --secondary-color: #CD853Ff0;   /* Peru - warm like onion skin */
    --accent-color: #E8A87Ccc;      /* Dark salmon - carrot-inspired */
    --text-dark: #5D4037;           /* Deep brown - rich soil color */
    --text-light: #FFF5EB;          /* Warm white - fresh vegetable flesh */
    --background-light: #FDF6EC;    /* Cream white - natural paper */
    --background-dark: #A0522D;     /* Sienna - deep earth tone */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Art Deco Decorative Elements */
.art-deco-border {
    position: relative;
}

.art-deco-border::before,
.art-deco-border::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--primary-color) 80%, 
        transparent 100%
    );
}

.art-deco-border::before {
    top: 0;
}

.art-deco-border::after {
    bottom: 0;
}

/* Header with Art Deco style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, 
        var(--primary-color), 
        var(--secondary-color) 50%, 
        var(--primary-color)
    );
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

.nav-container::before,
.nav-container::after {
    content: '✧';
    color: var(--text-light);
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav-container::before {
    left: 1rem;
}

.nav-container::after {
    right: 1rem;
}

.logo {
    color: var(--text-light);
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0 1.5rem;
}

.logo::before,
.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 2px;
    background: var(--text-light);
    transform: translateY(-50%);
}

.logo::before {
    left: 0;
}

.logo::after {
    right: 0;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-light);
    transition: width 0.3s ease;
}

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

/* Hero Section with Art Deco style */
.hero {
    height: 60vh;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            rgba(183, 155, 122, 0.7), 
            rgba(210, 180, 140, 0.3)
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.1) 10px,
            rgba(255, 255, 255, 0.1) 20px
        );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.hero h1::before,
.hero h1::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.5rem;
}

.hero h1::before {
    left: 0;
}

.hero h1::after {
    right: 0;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-top: 2rem;
}

.hero p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--text-light);
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background-color: var(--background-light);
}

.about h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 3rem;
    letter-spacing: 1px;
}

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

.about-text {
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 2rem;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 6rem 2rem;
    background: white;
}

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

.filter-buttons {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 2rem;
    margin: 0.5rem;
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 400px;
    text-align: center;
}

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

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

/* Video Section */
.video-section {
    padding: 6rem 2rem;
    background: var(--background-light);
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.video-container {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-description {
    flex: 1;
    padding-right: 2rem;
}

.video-description h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.video-description h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 2px;
    background: var(--secondary-color);
}

.video-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

@media (max-width: 992px) {
    .video-section {
        flex-direction: column;
        padding: 4rem 1rem;
        gap: 2rem;
    }

    .video-container {
        flex: 0 0 100%;
        width: 100%;
        max-width: 600px;
    }

    .video-description {
        padding-right: 0;
        text-align: center;
    }

    .video-description h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .video-description p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .video-description h3 {
        font-size: 1.8rem;
    }

    .video-description p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: var(--background-light);
}

.contact h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

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

.contact-info, .contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.contact-info h3 {
    color: var(--text-light);
}

.contact-info h3::after {
    background: var(--text-light);
}

.contact-info .info-item {
    background: rgba(255, 255, 255, 0.1);
}

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

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

.contact-info .icon {
    color: var(--text-light);
}

/* Keep the personal contact info styling as is */
.personal-contact-info h3 {
    color: var(--primary-color);
}

.personal-contact-info h3::after {
    background: var(--primary-color);
}

.personal-contact-info .info-item {
    background: #f8f9fa;
}

.personal-contact-info .info-item:hover {
    background: #f0f0f0;
    transform: translateX(10px);
}

.personal-contact-info .info-item span {
    color: var(--text-dark);
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .right-column {
        gap: 1.5rem;
    }
    
    .map-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }
    
    .map-container {
        height: 200px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

#modalImage {
    max-height: 80vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.modal-caption {
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    font-size: 1.1rem;
}

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

    .nav-links {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .about-text {
        padding: 2rem;
    }

    .video-section {
        padding: 4rem 1rem;
    }

    .video-container {
        border-radius: 8px;
    }

    .video-description {
        margin-top: 2rem;
    }

    .video-description h3 {
        font-size: 1.8rem;
    }

    .video-description p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .about h2,
    .gallery h2 {
        font-size: 2.2rem;
    }

    .filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}
