/* --- COLORS & FONTS --- */
:root {
    --gold-primary: #b8a24c;
    --gold-dark: #B59020;
    --text-dark: #1A1A1A;
    --text-grey: #555555;
    --white-pearl: #FAFAFA;
    
    /* Font Choices */
    --font-heading: 'Cinzel', serif;  /* Classy, Imperial look */
    --font-body: 'Lato', sans-serif;  /* Clean, readable */
    --font-accent: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f4f4f4; /* Fallback color */
}

/* --- FIXED BACKGROUND IMAGE --- */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    /* Use your floral image here */
    background-image: url('images/background-bloom.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- HEADER & NAV --- */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.85); /* Solid white for readability */
    box-shadow: 0 2px 10px rgba(0,0,0,0.09);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 50px; /* Adjusted for header bar */
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

/* --- HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 4rem 1rem; /* Top padding clears the fixed header */
}

/* THE MAGIC BOX: Ensures readability */
.glass-panel {
    background: rgba(255, 255, 255, 0.53); /* 92% Opacity White - Very Readable */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    max-width: 670px;
    width: 100%;
    text-align: center;
    border-radius: 150px; /* Slightly soft corners */
    border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border */
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.hero-main-logo {
    height: 150px; /* Big center logo */
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-accent);
}

.hero-tagline {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-primary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.gold-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--gold-primary);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    border-radius: 2px;
    transition: background 0.3s;
}

.gold-button:hover {
    background-color: var(--gold-dark);
}

/* --- COLLECTION GRID --- */
.content-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.9); /* Slight overlay on scroll */
}

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

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.separator-floral {
    height: 2px;
    width: 80px;
    background: var(--gold-primary);
    margin: 0 auto 4rem auto;
}

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

.gallery-item {
    background: white;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.item-details h3 {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.item-details p {
    font-size: 0.9rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 6rem 2rem;
}

.glass-panel-dark {
    background: rgba(20, 30, 25, 0.95); /* Dark Green/Black Glass */
    padding: 4rem;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
}

.text-light { color: var(--gold-primary); }

.contact-intro {
    margin-bottom: 3rem;
    font-family: var(--font-accent);
    font-style: italic;
    opacity: 0.8;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}


/* Add these to the bottom of styles.css */

/* Style for the clickable email */
.contact-link {
    color: var(--gold-primary); /* Uses your gold theme color */
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: white; /* Turns white when hovered */
}

/* Container for the icon to give it some space from the email */
.social-row {
    margin-top: 1.5rem;
}

/* Style for the Instagram Icon Image */
.social-icon {
    width: 40px;  /* Adjusts the size of the icon */
    height: auto;
    
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1); /* Slightly enlarges icon on hover */
    opacity: 0.8;
}


/* Add this to the bottom of styles.css */

.follow-text {
    font-family: var(--font-accent); /* Uses Playfair Display */
    font-style: italic;
    font-size: 1.1rem;
    color: white; /* Ensures readability on dark glass */
    margin-bottom: 10px; /* Adds space between text and the logo */
    letter-spacing: 1px;
}

/* LIGHTBOX (POP-UP IMAGE) STYLES */

/* 1. Make gallery images look clickable */
.gallery-image {
    cursor: pointer; /* Changes cursor to hand icon */
}

/* 2. The dark background overlay */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 2000; /* Sit on top of everything, even the header */
    padding-top: 50px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.9); /* Dark background */
    backdrop-filter: blur(5px); /* Elegant blur effect */
}

/* 3. The expanded image */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh; /* Keeps image from being too tall */
    /*border: 2px solid var(--gold-primary); /* Adds your brand gold border */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.5s; /* Smooth opening animation */
}

/* 4. The Close Button (X) */
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--gold-primary);
}

/* Animation Keyframes */
@keyframes zoomIn {
    from {transform:scale(0.8); opacity: 0;} 
    to {transform:scale(1); opacity: 1;}
}