:root {
    --green: #c45b34;
    --green-light: #e7b85c;
    --yellow: #ffd54f;
    --neutral-bg: #fafaf7;
    --brown-text: #3d2b1f;
}

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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    color: var(--brown-text);
    background-color: var(--neutral-bg);
    background-image: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

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

/* Header */
header {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(100, 58, 33, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--brown-text);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

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

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(196, 91, 52, 0.45), rgba(196, 91, 52, 0.45)), url('assets/Roll_House-01.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button, .contact-button {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 91, 52, 0.3);
    border: none;
}

.cta-button:hover, .contact-button:hover {
    background: var(--green-light);
    transform: translateY(-3px);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #8b4513;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-card {
    background: #fff;
    background-image: none;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px dashed var(--green);
}

.product-card::before {
    display: none;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    border-style: solid;
}

.product-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #8b4513;
}

.product-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.pricing {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #d2a679;
}

.price-option {
    margin-bottom: 15px;
    padding: 10px;
    background: #fdfaf6;
    border-radius: 8px;
    border: 1px solid #f0e9e1;
}

.price-option:last-child {
    margin-bottom: 0;
}

.price-option strong {
    color: #8b4513;
    font-size: 1.2rem;
}

.price-option small {
    color: #777;
    font-style: italic;
}

/* About Section */
.about {
    background: #fff;
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8b4513;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-image {
    background: transparent;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(100, 58, 33, 0.15);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 200px;
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(100, 58, 33, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    background: #f8f4f0;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 24, 16, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2rem;
    z-index: 3;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(3) {
    grid-row: span 2;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(100, 58, 33, 0.15);
    z-index: 10;
}

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

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

/* Gallery Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    width: auto;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #4f2f20;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #d2a679;
    color: #fff;
    transform: scale(1.1);
}

/* Market Info */
.market-info {
    background: var(--neutral-bg);
    color: var(--brown-text);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.market-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="market-pattern" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect fill="url(%23market-pattern)" width="100" height="100"/></svg>');
    opacity: 0.3;
}

.market-info .container {
    position: relative;
    z-index: 2;
}

.market-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-box {
    background: #fff8f2;
    border: 1px solid var(--green-light);
    padding: 35px 25px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.info-box:nth-child(1) {
    animation-delay: 0.2s;
}

.info-box:nth-child(2) {
    animation-delay: 0.4s;
}

.info-box:nth-child(3) {
    animation-delay: 0.6s;
}

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

.info-box:hover::before {
    left: 100%;
}

.info-box:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brown-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.info-box h3 i {
    margin-right: 10px;
    background: var(--green-light);
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-box:hover h3 i {
    background: var(--green-light);
    transform: scale(1.1);
}

.info-box p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes slideInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Contact Section */
.contact {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.contact h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #8b4513;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.contact-button {
    display: inline-block;
    background: #8b4513;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 10px;
    font-family: 'Nunito', sans-serif;
    border: 2px solid transparent;
}

.contact-button:hover {
    background: #a0522d;
    transform: translateY(-2px);
}

.contact-button i {
    margin-right: 8px;
}

/* Footer */
footer {
    background: #4f2f20;
    color: #e5d9c9;
    text-align: center;
    padding: 40px 0;
    margin-top: 0;
}

footer p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: #4f2f20;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    border-radius: 50%;
    background: #e5d9c9;
}

.social-links a:hover {
    color: #fff;
    background: #d2a679;
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    nav {
        gap: 15px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

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

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

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