@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --bg-dark: #000000;
    --bg-light: #eaddcb;
    --gold: #dfba6b;
    --text-light: #f4f4f4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.7; /* Slightly increased line-height for easier reading */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--gold);
}

h1 { font-size: 3rem; margin-bottom: 1rem; text-align: center; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
/* Increased h3 slightly to maintain scale with larger body text */
h3 { font-size: 1.6rem; margin-bottom: 0.5rem; display: flex; justify-content: space-between;}

/* Main body paragraphs heavily increased for readability */
p { font-weight: 400; font-size: 1.3rem; margin-bottom: 1.2rem; color: #ffffff; }

.price { color: var(--gold); font-weight: 600; }

header {
    /* Slightly transparent black background */
    background-color: rgba(0, 0, 0, 0.65);

    /* Frosted glass blur effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Required for Safari */

    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Softened border to match the glass look */

    /* The following 3 lines make the header sticky when scrolling */
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem; /* Increased size */
    font-weight: 700;  /* Made slightly bolder for legibility */
    transition: opacity 0.3s ease;
}

nav a:hover { opacity: 0.7; }

/* --- Back to Home Link (For pages without nav) --- */
.back-link {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem; /* Increased size */
}

.back-link:hover {
    text-decoration: underline;
}

/* --- Main Layout --- */
main {
    flex: 1;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- Home Page Specifics --- */
.home-main {
    background-color: var(--bg-light);
    color: var(--bg-dark);
    max-width: 100%;
    padding: 0;
}

.logo-splash {
    background-color: #000000;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.splash-logo {
    max-width: 600px;
    width: 80%;
    height: auto;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 4rem;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    color: var(--bg-dark);
    font-size: 4rem;
    text-align: left;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-text p {
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.hero-image-placeholder {
    width: 500px;
    height: 400px;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- About Page Specifics --- */
.about-main {
    max-width: 800px;
    text-align: center;
}

.about-main section {
    margin-bottom: 4rem;
}

.philosophy-item {
    margin-bottom: 2.5rem;
}

.philosophy-item h3 {
    justify-content: center;
    margin-bottom: 1rem;
}

/* --- Services Page Specifics --- */
.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.service-category {
    margin-bottom: 3rem;
}

.service-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

/* Service descriptions explicitly targeted to be larger */
.service-item p { margin-bottom: 0; font-size: 1.2rem; }

/* --- Gift Lounge Specifics --- */
.subtitle {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 1.4rem; /* Increased size */
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-rows: 250px;
}

.box {
    border: 2px solid var(--gold);
    overflow: hidden;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.box:nth-child(1) { grid-row: span 2; }
.box:nth-child(4) { grid-row: span 2; }

/* --- Contact Page Specifics --- */
.contact-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.contact-item { margin-bottom: 2rem; font-size: 1.4rem; } /* Increased size */
.contact-item h3 { justify-content: center; }
.contact-item a { color: var(--text-light); text-decoration: none; }
.contact-item a:hover { color: var(--gold); }

/* --- Footer --- */
footer {
    background-color: #111;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.footer-column {
    flex: 1;
    min-width: 280px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-column p, .footer-column a {
    color: #ffffff;
    text-decoration: none;
    line-height: 1.8;
    font-size: 1.2rem; /* Increased size */
    font-weight: 400;
}

.footer-column a:hover {
    color: var(--gold);
    transition: color 0.3s ease;
}

.social-links a {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.4rem; /* Increased size */
    letter-spacing: 1px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
    font-size: 1rem; /* Increased size */
    color: #aaaaaa;
}

@media (max-width: 900px) {
    .hero-section, .services-container {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 { text-align: center; font-size: 3rem;}
    .hero-image-placeholder { width: 100%; height: 300px; }
}

/* --- Gift Card Page Specifics --- */
.gift-card-main {
    max-width: 1000px;
}

.gift-card-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.gift-card-selection {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: #111;
    padding: 3rem;
    border: 1px solid #222;
}

.card-preview {
    flex: 1;
}

.card-design {
    width: 100%;
    aspect-ratio: 1.58 / 1;
    background: #000;
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-logo {
    width: 60%;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.card-text {
    color: var(--gold);
    letter-spacing: 5px;
    font-size: 1rem; /* Increased size */
    text-transform: uppercase;
}

.purchase-options {
    flex: 1;
}

.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.amount-btn {
    background: transparent;
    border: 1px solid #444;
    color: var(--text-light);
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover, .amount-btn.active {
    border-color: var(--gold);
    color: var(--gold);
}

.custom-amount {
    margin-bottom: 2rem;
}

.custom-amount label {
    display: block;
    font-size: 1rem; /* Increased size */
    color: #888;
    margin-bottom: 0.5rem;
}

.custom-amount input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: var(--gold);
    font-size: 1.5rem;
    padding: 0.5rem 0;
}

.checkout-btn {
    width: 100%;
    background-color: var(--gold);
    color: #000;
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem; /* Increased size */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #f0cc83;
    transform: translateY(-2px);
}

.stripe-mockup .small-text {
    font-size: 0.9rem; /* Increased size */
    color: #666;
    margin-bottom: 1rem;
}

.payment-icons {
    margin-top: 1rem;
    font-size: 0.9rem; /* Increased size */
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 800px) {
    .gift-card-selection {
        flex-direction: column;
        padding: 1.5rem;
    }
}