@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #1a1a1a;
    --accent: #c5a368;
    --text-main: #333;
    --text-muted: #666;
    --bg-light: #f9f9f7;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Nav */
header {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

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

nav ul li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent);
    transition: var(--transition);
}

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

.cta-button {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 80%;
    background: url('../assets/hero.png') no-repeat center center/cover;
    border-radius: 20px 0 0 20px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.1);
}

/* Featured Section */
.featured {
    padding: 10rem 5%;
}

.section-head {
    text-align: center;
    margin-bottom: 6rem;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-head .divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

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

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.product-price {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary);
}

/* About Section */
.about {
    padding: 10rem 5%;
    background-color: var(--primary);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5%;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.stats {
    display: flex;
    gap: 4rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--accent);
}

.stat-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 10rem 5%;
    text-align: center;
}

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

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

form input, form textarea {
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

form input:focus, form textarea:focus {
    border-color: var(--accent);
}

form textarea {
    grid-column: span 2;
    height: 150px;
    resize: none;
}

form button {
    grid-column: span 2;
    padding: 1.2rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

form button:hover {
    background: var(--primary);
}

/* Footer */
footer {
    padding: 5rem 5% 2rem;
    background: #f0f0ed;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    margin-bottom: 4rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        top: 0;
        margin-top: 3rem;
        border-radius: 20px;
    }
    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .stats {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    nav, .cta-button {
        display: none;
    }
    form {
        grid-template-columns: 1fr;
    }
    form input, form textarea, form button {
        grid-column: span 1;
    }
}
