:root {
    --bg-color: #FAF9F6;
    --text-main: #2B2B2B;
    --text-light: #737373;
    --accent-gold: #C6A87C;
    --card-bg: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(250, 249, 246, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: var(--text-main);
    letter-spacing: 1px;
    line-height: 1;
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.menu-toggle { display: none; }
.hamburger { display: none; cursor: pointer; font-size: 28px; color: var(--text-main); line-height: 1; }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    transition: color 0.3s;
}

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

/* Page Headers (Internal pages) */
.page-header {
    padding: 140px 5% 40px;
    text-align: center;
    background-color: var(--bg-color);
}

.page-header h1 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1;
}

.page-header p {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 10px;
    font-weight: 700;
}

/* Floating Back to Home Button */
.back-link {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 900;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.05);
}

.back-link:hover {
    background-color: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 168, 124, 0.4);
}

/* Hero Section (Home page) */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.construction-badge {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero h1 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    background-color: var(--text-main);
    color: white;
    padding: 14px 32px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-gold);
}

/* Pinterest Masonry Grid */
.masonry-grid {
    column-count: 3;
    column-gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.grid-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.grid-item:hover img {
    transform: scale(1.04);
}

/* Overlay for Gallery/Shop Items */
.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.grid-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h3 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.item-overlay p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Dummy Buy Now Button */
.buy-btn {
    display: inline-block;
    background-color: var(--card-bg);
    color: var(--text-main);
    padding: 10px 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.buy-btn:hover {
    background-color: var(--accent-gold);
    color: white;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 5%;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Contact Page */
.contact-info {
    text-align: center;
    padding: 20px 5%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--text-main);
    color: white;
    margin-top: 60px;
}

.footer-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    opacity: 0.6;
    transition: all 0.3s;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

footer p {
    font-size: 0.7rem;
    opacity: 0.4;
    letter-spacing: 1px;
}

/* =========================================
   MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 1024px) {
    .masonry-grid { column-count: 2; }
    .about-content { flex-direction: column; gap: 40px; text-align: center; }
    .about-image img { height: 450px; }
}

@media (max-width: 768px) {
    /* Mobile Navigation Dropdown */
    .hamburger { display: block; }
    
    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        background-color: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(10px);
        transition: height 0.3s ease;
        align-items: center;
        gap: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }

    .menu-toggle:checked ~ .nav-links {
        height: auto;
        padding: 20px 0 30px;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    .masonry-grid { column-count: 1; padding: 0 4%; }
    .item-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
    .about-image img { height: 400px; border-radius: 150px 150px 0 0; }
    
    .back-link {
        bottom: 20px;
        left: 20px;
        padding: 10px 18px;
        font-size: 9px;
    }
}