
/* ===== ROOT VARIABLES ===== */
:root {
    --olive-green: #000;
    --dark-olive: #3a3a3a;
    --gold: #d4af37;
    --terracotta: #c9705f;
    --cream: #faf8f3;
    --creamy-white: #fffef9;
    --white: #ffffff;
    --text-dark: #3a3a3a;
    --text-light: #3a3a3a;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--olive-green);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}
.link{
    color: var(--gold);
    font-weight: 600;
}
/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--olive-green);
}

.subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 1rem 0;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, var(--dark-olive) 0%, var(--olive-green) 100%);
    padding: 0.3rem 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: #3a3a3a;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: var(--gold);
}
.navbar-toggler{
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

/* Off-canvas Menu */
.offcanvas {
    background: linear-gradient(135deg, var(--dark-olive) 0%, var(--olive-green) 100%);
}

.offcanvas-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.offcanvas .nav-link {
    font-size: 1.1rem;
    padding: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.mobile-contact i {
    color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-navy {
    background: var(--olive-green);
    color: var(--white);
    border: 2px solid var(--olive-green);
}

.btn-navy:hover {
    background: transparent;
    color: var(--olive-green);
    border-color: var(--olive-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 124, 89, 0.3);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    margin-top: 76px;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}
.carousel-indicators [data-bs-target]{
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
/* Hero Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--olive-green) 0%, var(--dark-olive) 100%);
    padding: 150px 0 100px;
    margin-top: 76px;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== SECTIONS ===== */
section {
    position: relative;
}

.welcome-section,
.features-section,
.faq-section {
    padding: 80px 0;
}

/* ===== IMAGE EFFECTS ===== */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-wrapper img {
    transition: transform 0.6s ease;
}

.hover-zoom:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 92, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.hover-zoom:hover .image-overlay {
    opacity: 1;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===== FAQ ACCORDION ===== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: var(--white);
    color: var(--olive-green);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--olive-green);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:not(.collapsed) i {
    color: var(--gold);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: var(--cream);
}

.accordion-body a {
    color: var(--terracotta);
    font-weight: 600;
}

.accordion-body a:hover {
    color: var(--gold);
}

/* ===== POLICY CARDS ===== */
.policy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.policy-card:hover {
    box-shadow: var(--shadow-lg);
}

.policy-icon {
    width: 60px;
    height: 60px;
    background: var(--olive-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--gold);
}

.policy-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--olive-green);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.policy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== INFO CARDS ===== */
.info-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.info-box {
    background: var(--cream);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.info-box h5 {
    color: var(--olive-green);
    margin-bottom: 0.75rem;
}

.info-box ul {
    margin-bottom: 0;
}

.text-gold {
    color: var(--gold) !important;
}

.text-navy {
    color: var(--olive-green) !important;
}

.text-terracotta {
    color: var(--terracotta) !important;
}

.border-gold {
    border: 2px solid var(--gold) !important;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.5rem 0;
}

/* ===== AMENITY CARDS ===== */
.amenity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: var(--olive-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--gold);
}

.amenity-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.amenity-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* ===== EVENT TYPE CARDS ===== */
.event-type-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.event-type-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.event-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.event-type-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--olive-green);
}

.event-type-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--olive-green);
    color: var(--olive-green);
    padding: 0.5rem 1.5rem;
    margin: 0.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--olive-green);
    color: var(--white);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 92, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.gallery-overlay p {
    font-weight: 600;
    margin: 0;
}

.placeholder-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contact-info-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--olive-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.contact-info-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--olive-green);
}

.contact-info-card a {
    color: var(--terracotta);
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--gold);
}

.form-label {
    font-weight: 600;
    color: var(--olive-green);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--olive-green) 0%, var(--dark-olive) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 50%;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-olive);
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.footer-contact li,
.footer-links li {
    padding: 0.5rem 0;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer hr {
    opacity: 0.2;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .amenity-card,
    .policy-card {
        margin-bottom: 1.5rem;
    }
    
    .gallery-card img {
        height: 250px;
    }
}

/* ===== UTILITY CLASSES ===== */
.bg-cream {
    background-color: var(--cream) !important;
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-lg-custom {
    box-shadow: var(--shadow-lg);
}

/* ===== GLIGHTBOX CUSTOM STYLES ===== */
/* Fix lightbox to remove white background and gaps */
.glightbox-container {
    background: rgba(0, 0, 0, 0.95) !important;
}

.gslide-image img {
    width: auto !important;
    height: auto !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    object-fit: contain !important;
    display: block !important;
}

.gslide-media {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
}

.ginner-container {
    width: auto !important;
    background: transparent !important;
}

.gslide-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
}

.gslide {
    background: transparent !important;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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