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

:root {
    --primary: #c5a880; /* Nude Gold */
    --primary-dark: #a38660;
    --bg-light: #faf9f6; /* Off White */
    --text-dark: #2c2c2c;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
    color: white;
    padding: 12px 30px;
    border-radius: 0; /* Chic sharp corners */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-outline-dark {
    border-radius: 0;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* --- HERO --- */
header {
    background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.8)), url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- GALLERY GRID (Insta Style) --- */
.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- PRICING LIST --- */
.price-item {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.price-item h5 { margin: 0; font-size: 1.1rem; }
.price-item span { font-weight: bold; color: var(--primary-dark); }

/* --- STICKY MOBILE CTA --- */
.sticky-cta-mobile {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 80%;
    text-align: center;
}