@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;600&family=Alex+Brush&display=swap');

:root {
    --primary-gold: #c5a059;
    --dark-brown: #3a2f27;
    --text-color: #333333;
    --light-bg: #faf9f6;
    --white: #ffffff;
    --border-color: #e5e0d8;
    --pill-gradient: linear-gradient(to right, #c5a059, #b08d4b);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    animation: pageFade 0.8s ease-in-out;
}

@keyframes pageFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
}

/* Logo: Thin and Elegant */
.logo-font {
    font-family: 'Alex Brush', cursive;
    font-size: 2.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.5s ease;
    display: inline-block;
}

.logo-font:hover {
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
    transform: scale(1.02);
}

/* Navbar: Sophisticated Transparency */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.navbar-toggler {
    transition: all 0.4s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

.navbar-toggler:hover {
    background-color: rgba(197, 160, 89, 0.05);
    transform: rotate(5deg) scale(1.1);
}

.nav-link {
    color: var(--dark-brown) !important;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 14px;
    padding: 8px 0 !important;
    transition: all 0.3s ease;
    text-transform: capitalize;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active::after {
    width: 80%;
}

.btn-header-login {
    background: #b08d4b;
    color: var(--white) !important;
    border: none;
    padding: 8px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.btn-header-login:hover {
    background-color: var(--primary-gold);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

.btn-header-signup {
    background-color: transparent;
    color: #b08d4b !important;
    border: 1px solid #b08d4b;
    padding: 7px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-header-signup:hover {
    background-color: #b08d4b;
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section: Exact Mirroring */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/theme/hero.png');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-box {
    max-width: 450px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--dark-brown);
    font-weight: 400; /* Regular Playfair weights for the first part */
}

.hero-title span {
    color: var(--primary-gold);
    display: block;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 600;
}

.btn-book-now {
    background: #c5a059;
    color: var(--white) !important;
    padding: 14px 45px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.35);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    background: #b08d4b;
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.45);
}

/* Trust Bar: Gold Circle Icons - STRICT REPLICATION */
.trust-bar {
    background-color: var(--white);
    padding: 22px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
    font-size: 0.85rem;
}

.trust-item i {
    color: var(--white);
    font-size: 1rem;
    background-color: var(--primary-gold); /* Solid gold circle exactly like screenshot */
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.2);
    transition: transform 0.3s ease;
}

.trust-item:hover i {
    transform: rotateY(180deg);
}

/* Section Header: Mirrored Dividers */
.section-header {
    text-align: center;
    margin: 45px 0 35px;
    position: relative;
}

.section-header h2 {
    font-size: 2.2rem;
    display: inline-block;
    padding: 0 40px;
    background-color: var(--light-bg);
    z-index: 2;
    position: relative;
    color: var(--dark-brown);
    font-weight: 400;
}

.section-header::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-gold), var(--primary-gold), transparent);
    z-index: 1;
    opacity: 0.5;
}

/* The Organic Silk Wave backgrounds */
.silk-background {
    position: relative;
}

.wave-top {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L40,154.7C80,149,160,139,240,149.3C320,160,400,192,480,186.7C560,181,640,139,720,117.3C800,96,880,96,960,112C1040,128,1120,160,1200,165.3C1280,171,1360,149,1400,138.7L1440,128L1440,0L1400,0C1360,0,1280,0,1200,0C1112,0,1040,0,960,0C880,0,800,0,720,0C640,0,560,0,480,0C400,0,320,0,240,0C160,0,80,0,40,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding-bottom: 40px;
}

/* How It Works: Script Numbers */
.step-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 15px;
    transition: all 0.6s ease;
    filter: grayscale(30%);
}

.step-box:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.15);
}

.step-label {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.step-num {
    font-family: 'Alex Brush', cursive;
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-right: 12px;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
}

.sub-divider {
    text-align: center;
    margin: 35px 0;
    font-style: italic;
    color: #6a6a6a;
    position: relative;
    font-size: 0.95rem;
}

.sub-divider::before, .sub-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 250px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-gold), var(--primary-gold), transparent);
    opacity: 0.4;
}

.sub-divider::before { left: calc(50% - 380px); }
.sub-divider::after { right: calc(50% - 380px); }

/* Feature Cards: Rounded Circle Borders */
.feature-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.feature-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--dark-brown);
}

.feature-card p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
}

/* Testimonial Section with Waves */
.testimonial-section {
    padding: 60px 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23faf9f6' fill-opacity='1' d='M0,192L48,213.3C96,235,192,277,288,261.3C384,245,480,171,576,144C672,117,768,139,864,176C960,213,1056,267,1152,266.7C1248,267,1344,213,1392,186.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center bottom;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-img {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 20px 20px 0 rgba(197, 160, 89, 0.08);
}

.testimonial-content {
    flex: 1;
    position: relative;
    padding-top: 20px;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-watermark {
    font-size: 6rem;
    color: rgba(197, 160, 89, 0.1);
    position: absolute;
    top: -60px;
    left: -40px;
    font-family: serif;
    z-index: 0;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 35px;
    font-size: 1rem;
}

.btn-reviews {
    background: var(--pill-gradient);
    color: var(--white) !important;
    padding: 14px 40px;
    border-radius: 35px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(197, 160, 89, 0.25);
    display: inline-block;
}

/* Gallery Waves Texture */
.gallery-wrapper {
    padding: 0 0 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L60,208C120,192,240,160,360,165.3C480,171,600,213,720,197.3C840,181,960,107,1080,85.3C1200,64,1320,96,1380,112L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.gallery-grid img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-grid div:hover img {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 10;
    position: relative;
}

/* Footer Excellence */
footer {
    background-color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    font-family: 'Alex Brush', cursive;
    font-size: 2.6rem;
    color: var(--primary-gold);
}

.footer-privacy {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.social-icons a {
    color: #ccc;
    font-size: 1.4rem;
    margin: 0 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--primary-gold);
    transform: translateY(-5px) scale(1.2);
}

.copyright {
    color: #ddd;
    font-size: 0.8rem;
    margin-top: 25px;
    letter-spacing: 0.5px;
}

/* Post-Login/Auth Pages Specifics */
.auth-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.03);
    margin-top: 50px;
}

.auth-card h2 {
    color: var(--dark-brown);
    font-weight: 700;
    margin-bottom: 30px;
}

.auth-form .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #eee;
    font-size: 0.95rem;
}

.btn-auth-submit {
    background: var(--pill-gradient);
    color: var(--white) !important;
    font-weight: 600;
    padding: 12px;
    border-radius: 30px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-auth-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
    opacity: 0.9;
}

/* Admin Button Global Hover */
.btn-dark {
    transition: all 0.4s ease !important;
}

.btn-dark:hover {
    background-color: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    /* Navbar Mobile Fixes */
    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        margin-top: 15px;
        position: absolute;
        top: 100%;
        left: 3%;
        right: 3%;
        z-index: 1000;
        border: 1px solid var(--border-color);
    }
    .nav-item {
        margin-bottom: 12px;
        text-align: center;
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 8px;
    }
    .nav-link::after {
        display: none; /* Hide hover underline on mobile */
    }
    .d-flex.align-items-center {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }
    .btn-header-login, .btn-header-signup {
        width: 100%;
        margin: 0 !important;
        text-align: center;
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem !important; }
    .testimonial-wrapper { flex-direction: column; text-align: center; }
    .testimonial-watermark { left: 0; right: 0; margin: auto; }
    
    /* Common page padding fixes */
    .silk-background { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .silk-background .container { padding-top: 1rem !important; }
    
    .hero-box { text-align: center; margin: 0 auto; }
    .hero-box .hero-subtitle { font-size: 1rem; }
    
    /* Adjust specific elements */
    .feature-icon { width: 50px; height: 50px; font-size: 1.4rem; }
}
