/* Professional Handcrafted Design System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Lato:wght@300;400&display=swap');

:root {
    --bg-primary: #f9f9f9;
    /* Clean subtle off-white */
    --text-primary: #333333;
    /* Charcoal */
    --text-secondary: #666666;
    --accent-gold: #D4AF37;
    /* Metallic Gold */
    --accent-navy: #1a2a3a;
    /* Deep Navy */

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;

    --border-style: 1px solid #e0e0e0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 100px 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--accent-navy);
    font-weight: 600;
    margin-top: 0;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 20px auto 0;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

/* Navigation */
header {
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}

.logo p {
    display: none;
    /* Hide tagline for compact mode */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    /* Align to right */
    gap: 40px;
    margin: 0;
    /* Remove top margin */
}

nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-navy);
    color: #fff;
    padding: 15px 40px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid var(--accent-navy);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-navy);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: #fff;
}

/* Grid System */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

/* Cards / Pricing */
.card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    color: var(--text-secondary);
}

.card li {
    margin-bottom: 10px;
}

.price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-gold);
    display: block;
    margin: 10px 0;
}

/* Showcase / Polaroids Refined */
.polaroid {
    background: #fff;
    padding: 0;
    box-shadow: none;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* Enforce square aspect ratio for uniformity */
}

.polaroid img {
    width: 100%;
    height: 100%;
    /* Fill container */
    object-fit: cover;
    /* Crop to fit */
    display: block;
    transition: transform 0.5s ease;
}

.polaroid:hover img {
    transform: scale(1.05);
}

.polaroid p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    margin: 0;
    text-align: center;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.polaroid:hover p {
    transform: translateY(0);
}

/* Forms */
input,
textarea {
    width: 100%;
    padding: 15px;
    background: #fdfdfd;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-navy);
}

/* Footer */
footer {
    background: var(--accent-navy);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 100px;
}

footer p {
    opacity: 0.7;
}

/* Hero Slider */
#hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    /* Ensure text is readable on dark overlay */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
    /* Text above overlay */
}

#hero h1,
#hero p {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#hero h1 {
    color: var(--accent-gold);
}


/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
        position: absolute;
        top: 30px;
        right: 20px;
        z-index: 1001;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        /* Position right below header */
        left: 0;
        width: 100%;
        padding: 20px 0;
        border-bottom: 2px solid var(--accent-gold);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 20px;
        z-index: 1000;
        margin: 0;
        /* Ensure no margin in mobile verify */
    }

    nav ul.active {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 3rem;
    }
}