/* --- CSS Reset & Variables --- */
:root {
    --bg-color: #FAFAF7; /* Soft warm off-white */
    --text-primary: #33312E; /* Soft black */
    --text-secondary: #6B655D; /* Muted brown-grey */
    --accent-primary: #8C7058; /* Warm earthy brown */
    --accent-hover: #755B45; 
    --accent-secondary: #D4C5B3; /* Beige */
    --surface-color: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --radius: 12px;
    --shadow: 0 10px 30px rgba(140, 112, 88, 0.08);
}

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

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

html {
    scroll-behavior: smooth;
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    border-radius: 4px; /* Less rounded for more classic look */
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 112, 88, 0.2);
}

.btn-secondary {
    background-color: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--accent-secondary);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background-color: var(--bg-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-secondary);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--accent-primary);
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(250, 250, 247, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 197, 179, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo span {
    font-style: italic;
    color: var(--accent-primary);
    font-weight: 400;
}

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

.nav-links a {
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title i {
    color: var(--accent-primary);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

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

/* --- Hero Image --- */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 200px 200px 0 0; /* Arch shape */
    object-fit: cover;
    box-shadow: var(--shadow);
    border: 8px solid white;
}

.badge-float {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow);
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-primary);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- Collection Section --- */
.collection {
    padding: 6rem 5%;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-secondary);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

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

.product-card {
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

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

.tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
}

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

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

.product-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.instagram-link:hover {
    opacity: 0.7;
}

/* --- Highlight Banner --- */
.highlight-banner {
    background: var(--accent-primary);
    color: white;
    padding: 5rem 5%;
    text-align: center;
}

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

.banner-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.banner-content p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Footer --- */
footer {
    background-color: var(--text-primary);
    color: white;
    padding: 4rem 5% 2rem;
    text-align: center;
}

.footer-content .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-content p {
    color: #A09E9A;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: #A09E9A;
    font-size: 0.85rem;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .badge-float {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
    
    @keyframes float {
        0% { transform: translate(-50%, 0px); }
        50% { transform: translate(-50%, -10px); }
        100% { transform: translate(-50%, 0px); }
    }
    
    .nav-links, .nav-actions .btn-outline {
        display: none;
    }
}
