:root {
    --primary: #2a3d39;       
    --primary-dark: #1F2E2B;
    --gold: #C6AA76;          
    --gold-light: #E2CBA4;
    --bg-dark: #3d5652;       
    --bg-surface: #283a37;
    --text-light: #FFFFFF;
    --text-muted: #dbebeb;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --gold-gradient: linear-gradient(135deg, #C6AA76 0%, #a48756 50%, #E2CBA4 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.eyebrow.gold {
    color: var(--gold);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-logo {
    width: 150px;
    margin-bottom: 2rem;
    animation: goldPulse 2s infinite ease-in-out;
}

.preloader-text {
    text-align: center;
    color: var(--gold);
    font-family: var(--font-heading);
}

.preloader-text p {
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.preloader-text .tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    letter-spacing: 1px;
    margin-top: 1.5rem;
    font-style: italic;
}

@keyframes goldPulse {
    0% { transform: scale(0.95); opacity: 0.8; filter: drop-shadow(0 0 5px rgba(198,170,118,0.2)); }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 20px rgba(198,170,118,0.6)); }
    100% { transform: scale(0.95); opacity: 0.8; filter: drop-shadow(0 0 5px rgba(198,170,118,0.2)); }
}

/* Brand Logo Image */
.brand-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 12, 11, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(198, 170, 118, 0.1);
    transition: all 0.3s ease;
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Buttons */
.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-solid {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border-radius: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.4s ease;
    border: 1px solid var(--gold);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600948836101-f9ff5b91b920?q=80&w=2070');
    background-size: cover;
    background-position: center 30%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,12,11,0.3) 0%, rgba(10,12,11,0.8) 70%, var(--bg-dark) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero p.tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-light);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 4rem;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
    color: var(--gold);
}

.scroll-down i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Menu Layout & Search */
.menu-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
}

.search-container {
    margin: -1rem auto 4rem;
    display: flex;
    justify-content: center;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border-radius: 50px;
    border: 1px solid rgba(198, 170, 118, 0.4);
    background: rgba(40, 58, 55, 0.8);
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(198, 170, 118, 0.2);
    background: var(--primary-dark);
}

.category-section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(198, 170, 118, 0.1);
}

.category-section:last-of-type {
    border-bottom: none;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.small-header {
    margin-bottom: 2rem;
}

.section-number {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.small-header .section-title {
    font-size: 1.8rem;
}

/* Menu Items (Dotted Layout) */
.menu-group {
    margin-bottom: 3.5rem;
}

.group-title {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-style: italic;
    border-bottom: 1px solid rgba(198, 170, 118, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.menu-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.menu-info {
    flex-shrink: 0;
    max-width: 70%;
}

.menu-info h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.menu-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.menu-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(158, 171, 167, 0.3);
    margin: 0 1rem;
    position: relative;
    top: -6px;
}

.menu-price {
    flex-shrink: 0;
    font-family: var(--font-body);
    color: var(--gold-light);
    font-weight: 300;
    font-size: 1.1rem;
}

.highlight-item {
    background: rgba(61, 86, 82, 0.15);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 2px solid var(--gold);
    margin: 2rem -1.5rem;
}

.section-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
}

/* Featured Block */
.featured-service-block {
    background: linear-gradient(145deg, var(--bg-surface), #151a18);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(198, 170, 118, 0.15);
    margin-bottom: 4rem;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 16px;
    font-weight: 500;
}

.featured-service-block h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.featured-service-block p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.featured-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Grid Layouts */
.grid-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Image Break */
.image-break {
    height: 60vh;
    background-size: cover;
    background-position: center 20%;
    background-attachment: fixed;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.image-break::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,12,11,0.2);
}

/* Bridal Section */
.bridal-section {
    background: url('https://images.unsplash.com/photo-1595475207225-428b62bda831?q=80&w=2000') center/cover;
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border: none;
}

.bridal-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,12,11,0.85);
}

.bridal-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.bridal-content p {
    margin: 1.5rem 0 3rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.bridal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding: 6rem 2rem 2rem;
    text-align: center;
    background: #070908;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.footer-phrase {
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 3rem;
}

.footer-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.footer-details a {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-details a:hover {
    color: var(--gold);
}

.footer-details i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Floating WhatsApp Button */
.float-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.float-wa:hover {
    transform: scale(1.05);
}

/* Animations */
.fade-up, .fade-up-hero {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible, .fade-up-hero.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (min-width: 768px) {
    .grid-columns {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .highlight-item {
        padding: 1.5rem 2rem;
        margin: 2rem -2rem;
    }
}
