/* --- Variables --- */
:root {
    --bg-color: #FAF9F6;
    --text-color: #2D2D2D;
    --text-light: #666666;
    --accent-gold: #C5A059;
    --accent-rose: #F7CAC9;
    --white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

/* --- Header --- */
.header {
    padding: 30px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 4px;
    font-weight: 600;
}

.nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

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

.nav-link.active {
    border-bottom: 1px solid var(--text-color);
}

.cart-icon {
    font-size: 18px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1573408301185-9146fe634ad0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

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

.hero-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 200;
    animation: fadeInUp 1.4s ease-out;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-color);
}

/* --- Featured Section --- */
.featured {
    padding: 100px 0;
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-divider {
    width: 50px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    text-align: center;
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-rose);
    color: var(--text-color);
    padding: 5px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.product-price {
    font-size: 16px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* --- About Brief --- */
.about-brief {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
    margin-bottom: 100px;
}

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

.about-title {
    font-size: 42px;
    margin-bottom: 30px;
}

.about-brief p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-style: italic;
    font-family: var(--font-heading);
}

.link-underline {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 5px;
}

.link-underline:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    background-color: #F4F2EE;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    font-size: 18px;
    color: var(--text-light);
}

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

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #DEDAD6;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-menu {
    display: flex;
    gap: 30px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 0;
        position: relative;
        background: var(--bg-color);
    }
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    .hero {
        height: 70vh;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 36px;
    }
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
