/* styles.css */

/* --- 1. VARIABLES & RESET --- */
:root {
    --color-gold: #B8860B;        /* Dark Goldenrod */
    --color-sapphire: #0993bd;    /* Deep Sapphire Blue */
    --color-cream: #F5F5F5;       /* Off-White/Cream */
    --color-dark: #333333;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-cream);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-gold);
}

a {
    text-decoration: none;
    color: var(--color-sapphire);
    transition: color 0.3s;
}

a:hover {
    color: var(--color-gold);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 2. HEADER & NAVIGATION --- */
header {
    background-color: var(--color-cream);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-family: 'cinzel';
    

    color: var(--color-gold);
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

nav ul li a:hover::after {
    width: 100%;
}

/* --- 3. HERO SECTION --- */
#hero {
    background: url('assets/images/hero-placeholder.jpg') no-repeat center center/cover; /* Placeholder */
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    color: var(--color-cream);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--color-cream);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-gold);
    color: var(--color-cream);
    font-weight: bold;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #d4ac4a; /* Lighter Gold */
    transform: translateY(-2px);
    color: var(--color-cream);
}

/* --- 4. FEATURED COLLECTIONS (Grid) --- */
.section-padding {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.collection-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 30, 75, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--color-cream);
    transition: background 0.3s;
}

.collection-card:hover .card-overlay {
    background: rgba(184, 134, 11, 0.75); /* Gold overlay on hover */
}

.card-overlay h3 {
    color: var(--color-cream);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- 5. FOOTER --- */
footer {
    background-color: var(--color-sapphire);
    color: var(--color-cream);
    padding: 3rem 0 1rem;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

footer h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--color-cream);
}

footer a:hover {
    color: var(--color-gold);
}

.social-icons a {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(245, 245, 245, 0.1);
}

/* --- Responsive Adjustments (Basic) --- */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
    }
    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 0.5rem 0;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        margin-top: 1rem;
    }
}