/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

/* MASTER HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensures content is centered */
    align-items: center;
    padding: 140px 2rem 4rem 2rem;
    overflow: hidden;
    color: #ffffff;
}

/* ==========================================================================
   3. NAVIGATION BAR & BRANDING
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    z-index: 10;
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px; 
    align-items: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem; 
}

.navbar-logo-img {
    height: 52px; 
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: #ffffff;
}

.logo-text p {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #bfa38a; 
    margin-top: 4px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15); 
    padding: 5px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    margin-top: 2px;
}

.badge-icon {
    width: 11px;
    height: 11px;
    color: #bfa38a;
}

.badge-text {
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px; 
    color: #dfcfc2;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
    padding-top: 0.75rem; 
}

.nav-links a {
    text-decoration: none;
    color: #e5e5e5;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #ffffff;
}

.btn-nav {
    background-color: #e08300;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.btn-nav:hover {
    background-color: #c67400;
    transform: translateY(-2px);
}

/* ==========================================================================
   4. MAIN HERO CONTENT
   ========================================================================== */
.hero-content {
    max-width: 680px;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 5;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.highlight-text {
    color: #e08300;
    font-style: italic;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #dddddd;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary, .btn-secondary {
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e08300;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c67400;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero-scroll {
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-scroll a {
    text-decoration: none;
    color: #a3a3a3;
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-scroll a:hover {
    color: #ffffff;
}

/* ==========================================================================
   5. ABOUT SECTION (Fixed Cross-Fade, No Black Page)
   ========================================================================== */
.about-section {
    width: 100%;
    background-color: #fcf9f5; 
    color: #2b2520; 
    padding: 7rem 4rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 5rem;
    align-items: center;
}

.about-image-column .image-wrapper {
    position: relative;
    width: 100%;
}

.about-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background-color: transparent; /* Removed dark background to eliminate flash completely */
}

.main-about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0; 
    z-index: 1;
    transition: opacity 1s linear; /* Smooth cross-fade transition line curve */
}

/* Active image layer sits higher and turns solid */
.main-about-img.active {
    opacity: 1;
    z-index: 2;
}

.floating-detail-card {
    position: absolute;
    bottom: -20px;
    right: 0; 
    background-color: #ffffff;
    padding: 1.2rem 2.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #e08300; 
    z-index: 3; 
}

.floating-detail-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2b2520;
    font-style: italic;
    margin-bottom: 4px;
}

.floating-detail-card p {
    font-size: 0.65rem;
    font-weight: 600;
    color: #70665e;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-text-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #e08300;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.15;
    color: #1a1512;
}

.paragraph-highlight {
    font-size: 1.1rem;
    line-height: 1.65;
    color:#0b0603;
    font-weight: 400;
}

.paragraph-body {
    font-size: 0.95rem;
    line-height: 1.7;
     color: #000000;
    font-weight: 300;
}

.read-story-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1a1512;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    border-bottom: 2px solid #e08300;
    padding-bottom: 4px;
    align-self: flex-start;
    transition: gap 0.2s ease;
}

.read-story-link:hover {
    gap: 0.8rem;
}

/* ==========================================================================
   6. TRADITIONS SECTION
   ========================================================================== */
.traditions-section {
    width: 100%;
    background-color: #fcf9f5;
    padding: 4rem 4rem 8rem 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.traditions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 4.5fr 7.5fr; 
    gap: 4rem;
    align-items: start;
}

.traditions-left-panel {
    position: -webkit-sticky;
    position: sticky;
    top: 120px; 
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trad-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #e08300;
    text-transform: uppercase;
}

.trad-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.15;
    color: #1a1512;
}

.traditions-right-panel {
    display: flex;
    flex-direction: column;
}

.tradition-row {
    display: grid;
    grid-template-columns: 4fr 8fr; 
    gap: 2rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: start;
}

.tradition-row:first-child {
    padding-top: 1rem; 
}

.tradition-row:last-child {
    border-bottom: none;
}

.trad-meta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1512;
    margin-bottom: 4px;
}

.trad-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #7a6e65;
    text-transform: uppercase;
}

.trad-body p {
    font-size: 1rem;
    line-height: 1.65;
    color: #4a4037;
    font-weight: 300;
    padding-top: 4px;
}

/* ==========================================================================
   7. PILLARS SECTION
   ========================================================================== */
.pillars-section {
    width: 100%;
    background: linear-gradient(to bottom, #1d140f 0%, #170e0a 100%); 
    color: #ffffff;
    padding: 7rem 4rem;
}

.pillars-header {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.pillars-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #e08300;
    text-transform: uppercase;
}

.pillars-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.pillars-desc {
    font-size: 1.05rem;
    color: #cccccc;
    font-weight: 300;
}

.pillars-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-card {
    background-color: rgba(26, 17, 12, 0.4); 
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #e08300;
    opacity: 0.4;
    line-height: 1;
}

.pillar-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 0.25rem;
}

.pillar-translation {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #e08300;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pillar-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b3b3b3;
    font-weight: 300;
}

/* ==========================================================================
   8. BOOKING CALL-TO-ACTION SECTION
   ========================================================================== */
.booking-cta-section {
    width: 100%;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 4rem;
    text-align: center;
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.cta-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #e08300;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.cta-highlight {
    color: #e08300;
    font-style: italic;
}

.cta-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #dddddd;
    font-weight: 300;
    max-width: 620px;
    margin-bottom: 1rem;
}

.btn-cta {
    text-decoration: none;
    background-color: #e08300;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 131, 0, 0.2);
}

.btn-cta:hover {
    background-color: #c67400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 131, 0, 0.3);
}
/* ==========================================================================
   9. RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 3.8rem; }
    .hero-section { padding: 2rem; }
    
    .about-container { grid-template-columns: 1fr; gap: 4rem; }
    .about-section { padding: 5rem 2rem; }
    .section-title { font-size: 2.6rem; }
    
    .traditions-container { grid-template-columns: 1fr; gap: 2rem; }
    .traditions-left-panel { position: relative; top: 0; }
    .traditions-section { padding: 5rem 2rem; }
    .trad-title { font-size: 2.6rem; }
    .tradition-row { padding: 2rem 0; }
    
    .pillars-section { padding: 5rem 2rem; }
    .pillars-title { font-size: 2.6rem; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); } 
    
    .booking-cta-section { padding: 5rem 2rem; }
    .cta-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.8rem; }
    .hero-content { text-align: center; align-items: center; }
    .brand-wrapper { align-items: center; width: 100%; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { justify-content: center; }
    
    .tradition-row { grid-template-columns: 1fr; gap: 0.5rem; }
    .pillars-grid { grid-template-columns: 1fr; } 
    
    .cta-title { font-size: 2.2rem; }
}
/* ==========================================================================
   LEADERSHIP SLIDER STYLES (NO BLANK FLASH)
   ========================================================================== */
   .leadership-section {
    background-color: #fcf9f5; /* Light cream background to contrast your dark footer */
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hides the off-screen profile slide */
    width: 100%;
}

.leadership-slider-container {
    width: 100%;
    max-width: 600px; 
    /* Force the container to start exactly 50px from the left edge */
    margin-left: 50px; 
    margin-right: auto;
    position: relative;
   
}
.leadership-track {
    display: flex;
    width: 200%; /* Spans across two slides seamlessly */
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1); /* Ultra smooth ease */
}

.leader-slide {
    width: 50%; /* Each profile takes exactly half of the track (100% of container) */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.leader-image-wrapper {
    width: 240px;
    height: 240px;
    border-radius: 50%; /* Crisp circular crop */
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid #e08300; /* Subtle accent trim matching your brand orange */
    box-shadow: 0 10px 25px rgba(26, 21, 18, 0.08);
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1512;
    margin-bottom: 0.3rem;
}

.leader-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #bfa38a; /* Warm gold tone descriptor text */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
/* ==========================================================================
   UPDATED FOOTER STYLES
   ========================================================================== */
   .footer-section { 
    background-color: #1a1512; 
    color: #ffffff; 
    padding: 5rem 4rem 2rem 4rem; 
}

.footer-container { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 4rem; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.footer-column h3 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
}
/* ==========================================================================
   EXPANDED SUBSCRIPTION BOX STYLES
   ========================================================================== */
   .subscribe-text {
    color: #ffffff; /* Forced clean white letters */
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 450px; /* Increased to allow text room in a wider layout */
}

.subscribe-form {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    width: 100%;
    max-width: 480px; /* Increased overall container box size */
    align-items: center;
}

.subscribe-input {
    background: rgba(255, 255, 255, 0.05); /* Soft dark contrast variant background */
    border: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
    color: #ffffff; /* Clean white typing color */
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: 50px; /* Rounded pill style to match inputs/buttons */
    transition: all 0.3s ease;
}

.subscribe-input::placeholder {
    color: #aaa; /* Clear placeholder readability */
}

.subscribe-input:focus {
    border-color: #e08300; /* Glows your brand color on click */
    background: rgba(255, 255, 255, 0.08);
}

/* Unified Button Style - Matches btn-nav exactly */
.subscribe-btn-global {
    background: #e08300; 
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.subscribe-btn-global:hover {
    background: #ff9500; /* Brightens on hover like your primary actions */
    transform: translateY(-1px);
}

.subscribe-btn-global .btn-arrow {
    transition: transform 0.3s ease;
}

.subscribe-btn-global:hover .btn-arrow {
    transform: translateX(3px); /* Interactive nudge animation */
}

/* Logo Image Styling */
.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 4px; /* Matches subtle rounding if your logo has it */
}

.footer-brand-wrapper { 
    display: flex; 
    align-items: center; 
    gap: 1.2rem; 
    margin-bottom: 1.5rem; 
}

.footer-logo-text h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.4rem; 
    letter-spacing: 0;
    margin-bottom: 0;
    text-transform: none;
}

.sub-logo { 
    font-size: 0.6rem; 
    color: #bfa38a; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    display: block; 
}

.footer-tagline { 
    font-style: italic; 
    color: #ccc; 
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.footer-sub-tagline { 
    font-size: 0.7rem; 
    color: #bfa38a; 
}

/* Social Icons Layout & Hover Animations */
.social-icons { 
    display: flex; 
    gap: 1.2rem; 
    margin-top: 1.5rem; 
}

.social-icon-link { 
    color: #aaa; 
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 42px; 
    height: 42px; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
}

/* Hover effects matching the brand aesthetic */
.social-icon-link:hover {
    color: #ffffff;
    background: #e08300; /* Uses your warm brand primary color */
    border-color: #e08300;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 131, 0, 0.2);
}

.footer-bottom { 
    text-align: center; 
    margin-top: 5rem; 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    font-size: 0.8rem; 
    color: #666; 
}   




/*beginning of book forms*/



/* ==========================================================================
   TRANSPARENT GLASS FORM OVERLAY STYLES
   ========================================================================== */
.booking-overlay-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.form-wrapper-embedded {
    /* Premium transparent glass color configuration */
    background: rgba(20, 15, 12, 0.55); 
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px); /* Softly diffuses the photo details directly behind the form */
    -webkit-backdrop-filter: blur(15px);
    
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.form-header-embedded {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header-embedded h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2rem;
    margin: 0 0 0.4rem 0;
}

.form-header-embedded p {
    color: #bfa38a;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.form-group-embedded {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.form-group-embedded label {
    font-size: 0.75rem;
    color: #bfa38a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

/* Semi-transparent text inputs */
.form-group-embedded input,
.form-group-embedded select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group-embedded select option {
    background: #1a1512;
    color: #ffffff;
}

.form-group-embedded input:focus,
.form-group-embedded select:focus {
    border-color: #e08300;
    background: rgba(255, 255, 255, 0.14);
}

.form-row-twin-embedded {
    display: flex;
    gap: 1.25rem;
}

.twin-column-embedded {
    flex: 1;
}

/* Button style */
.booking-submit-btn-embedded {
    background: #e08300;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    padding: 0.95rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.booking-submit-btn-embedded:hover {
    background: #ff9500;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(224, 131, 0, 0.4);
}

.booking-submit-btn-embedded .btn-arrow-embedded {
    transition: transform 0.3s ease;
}

.booking-submit-btn-embedded:hover .btn-arrow-embedded {
    transform: translateX(4px);
}

/* Responsive adjustment for small viewports */
@media (max-width: 600px) {
    .hero-section {
        padding-top: 160px; /* Gives full stacked mobile navbar links room to breathe */
    }
    .form-wrapper-embedded {
        padding: 1.75rem 1.25rem;
    }
    .form-row-twin-embedded {
        flex-direction: column;
        gap: 0;
    }
}
/* ==========================================================================
   NAVIGATION BAR FIXED POSITIONING (LOCKS TO THE TOP)
   ========================================================================== */
   .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    
    /* Crucial layout fixes to lock it to the top */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100; /* High index layer so it always sits over everything else */
    
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(5px); /* Softly blurs the form content as it slides behind the bar */
    -webkit-backdrop-filter: blur(5px);
    box-sizing: border-box;
}

/* MASTER HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensures content is centered */
    align-items: center;
    padding: 140px 2rem 4rem 2rem;
    overflow: hidden;
    color: #ffffff;
}

/* ==========================================================================
   TRANSPARENT GLASS FORM OVERLAY
   ========================================================================== */
.booking-overlay-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.form-wrapper-embedded {
    background: rgba(20, 15, 12, 0.65); /* Keeps the image completely visible behind the card */
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}



/*about css beginning*/



/* ==========================================================================
   TRANSPARENT GLASS ABOUT CONTENT OVERLAY
   ========================================================================== */
   .about-overlay-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.content-wrapper-embedded {
    /* Identical frosted transparent glass format */
    background: rgba(20, 15, 12, 0.65); 
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    
    padding: 3rem;
    border-radius: 16px;
    width: 100%;
    max-width: 650px; /* Slightly wider layout for optimal text readability */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    text-align: center;
}

.about-header-embedded span {
    color: #e08300; /* Brand Orange */
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-header-embedded h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.about-header-embedded .tagline-kini {
    color: #bfa38a; /* Warm brand gold */
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
}

.about-body-text p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify; /* Aligns paragraph text blocks beautifully */
}

.about-body-text em {
    color: #bfa38a;
}

.about-body-text strong {
    color: #ffffff;
}

/* Premium Navigation Link Pill Button */
.about-footer-cta {
    margin-top: 2.5rem;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #e08300;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: #ff9500;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(224, 131, 0, 0.4);
}

.about-cta-btn .btn-arrow-embedded {
    transition: transform 0.3s ease;
}

.about-cta-btn:hover .btn-arrow-embedded {
    transform: translateX(4px);
}

/* Smartphone Downscaling adjustments */
@media (max-width: 600px) {
    .content-wrapper-embedded {
        padding: 2rem 1.5rem;
    }
    .about-header-embedded h2 {
        font-size: 2rem;
    }
    .about-body-text p {
        font-size: 0.95rem;
        text-align: left;
    }
}

/*about that of css*/
/* SPECIAL ACTION BUTTON: Book the Troop (The Last Link) */
.nav-links li:last-child a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff; /* Crisp white text so it stands out */
    background-color: #e08300; /* Solid brand orange fill */
    border: none; /* No border outline needed */
    padding: 0.7rem 1.6rem; /* Comfortable button proportions */
    border-radius: 50px; /* Perfect pill-shaped rounding */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(224, 131, 0, 0.2); /* Soft orange glow underneath */
    display: inline-block;
}

/* Hover State */
.nav-links li:last-child a:hover {
    background-color: #ff9500; /* Vibrant bright orange on hover */
    color: #ffffff;
    transform: translateY(-1px); /* Slight premium lift */
    box-shadow: 0 6px 20px rgba(224, 131, 0, 0.4); /* Stronger glow effect */
}
/* ==========================================================================
   STORY IMAGE INTERCEPT GRID RULES
   ========================================================================== */
   .story-image-row {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    width: 100%;
}

.story-img-card {
    flex: 1;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.story-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-img-card:hover img {
    transform: scale(1.05); /* Soft premium hover effect */
}

/* Ensure images scale stack on mobile devices smoothly */
@media (max-width: 600px) {
    .story-image-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    .story-img-card {
        height: 160px;
    }
}

/* ==========================================================================
   FOOTER STYLING STRUCTURE
   ========================================================================== */
.footer-section {
    background: #0b0603;
    padding: 4rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-column h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #bfa38a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.footer-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    border-radius: 4px;
}

.footer-logo-text h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0;
}

.sub-logo {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: #bfa38a;
}

.footer-tagline {
    font-style: italic;
    margin: 0.5rem 0 0 0;
}

.footer-sub-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.subscribe-text, .contact-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.subscribe-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    color: #ffffff;
    flex: 1;
}

.subscribe-btn-global {
    background: #e08300;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon-link {
    color: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    transition: color 0.3s;
}

.social-icon-link:hover {
    color: #e08300;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   EXPANDED MAXI-WIDE FORMAT LAYOUT
   ========================================================================== */
.about-overlay-container.wide-layout {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 2rem;
}

.content-wrapper-embedded.wide-card {
    background: rgba(20, 15, 12, 0.65); 
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    
    padding: 4rem; /* Generous inside breathing room */
    border-radius: 24px;
    width: 100%;
    max-width: 1350px; /* Stretched completely out for premium cinematic widescreen layouts */
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
}

/* 50/50 Grid Layout Split giving maximum widescreen area to both sections */
.about-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 4.5rem; /* Massive center gap to separate the visual layers cleanly */
    align-items: stretch; /* Stretches columns to equal height */
    margin-top: 3rem;
}

/* WIDE SENTENCE TEXT TRACKING */
.about-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-column p {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem; /* Expanded text scale size */
    line-height: 1.9;    /* Relaxed row line height so text never feels cramped or narrow */
    margin-bottom: 2rem;
    text-align: left;    /* Natural left alignment works perfectly with wider blocks */
    letter-spacing: 0.3px;
}

.about-text-column p:last-child {
    margin-bottom: 0;
}

/* LARGE PHOTO PORTRAITS SHOWCASE */
.about-images-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}

.story-img-card.wide-frame {
    width: 100%;
    height: 200px; /* Massive jump from 130px to 200px for strong photographic presence */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.story-img-card.wide-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}




/* beginning of gallery codes*/



/* ==========================================================================
   MULTI-SECTION CULTURAL PORTFOLIO RULES (IMAGERY REDUCED TO 50%)
   ========================================================================== */
   .disciplines-container-vertical {
    display: flex;
    flex-direction: column;
    gap: 3.5rem; /* Slightly tighter gap to match the cleaner, smaller layout */
    margin-top: 4rem;
    width: 100%;
}

.discipline-block-row {
    display: grid;
    /* CHANGED: Text takes 1.5 shares, images take 0.5 shares (Exactly 50% smaller image columns) */
    grid-template-columns: 1.5fr 0.5fr; 
    gap: 5rem; /* Generous gap so text doesn't crowd the smaller images */
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 3.5rem;
}

.discipline-block-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Alternating image columns layout shifts */
.discipline-block-row.inverted-row {
    /* CHANGED: Keeps image columns strictly at the smaller 50% ratio when inverted */
    grid-template-columns: 0.5fr 1.5fr; 
}
.discipline-block-row.inverted-row .discipline-text-pane {
    order: 2;
}
.discipline-block-row.inverted-row .discipline-media-pane {
    order: 1;
}

/* TEXT ELEMENT PRESENTATION */
.discipline-text-pane {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.discipline-meta-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e08300; 
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.discipline-text-pane h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.discipline-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #bfa38a; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.discipline-text-pane p {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* REDUCED MEDIA PORTRAIT DISPLAY FRAMES */
.discipline-media-pane {
    width: 100%;
    display: flex;
    justify-content: center;
}

.discipline-img-holder {
    width: 100%;
    max-width: 260px; /* Limits the actual width profile of the frame box */
    height: 180px;    /* REDUCED: Shifted down from 280px to match the new compact 50% width scale */
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.discipline-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.discipline-block-row:hover .discipline-img-holder img {
    transform: scale(1.04);
}

/* ==========================================================================
   RESPONSIVE SCALING BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .discipline-block-row,
    .discipline-block-row.inverted-row {
        grid-template-columns: 1fr; /* Responsively stacks elements comfortably on smaller screens */
        gap: 2rem;
        padding-bottom: 3rem;
    }
    
    .discipline-block-row.inverted-row .discipline-text-pane,
    .discipline-block-row.inverted-row .discipline-media-pane {
        order: unset;
    }
    
    .discipline-img-holder {
        max-width: 100%; /* Allows images to fill out naturally on tablet portrait frames */
        height: 220px;
    }
}


/* ==========================================================================
   1. CORE RESET & BASE STYLES
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: 'Inter', sans-serif; }
body { overflow-x: hidden; }

/* ==========================================================================
   2. NAVBAR & LOGO (FIXED)
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
    backdrop-filter: blur(5px);
}

.navbar-logo-img, .footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   3. RESPONSIVE DESIGN (THE "FIX" FOR MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    /* Prevent side-scrolling */
    body { width: 100%; margin: 0; }

    /* Hide desktop nav links & allow stacking */
    .nav-links { display: none; }

    /* Fix Logos - Ensure they stay their intended size */
    .navbar-logo-img, .footer-logo-img {
        height: 35px !important;
        width: auto !important;
    }

    /* Stack sections */
    .about-container, .traditions-container, .pillars-grid, .footer-container {
        grid-template-columns: 1fr !important;
    }

    /* Shrink Hero Text for readability */
    .hero-title { font-size: 2.2rem !important; }
    
    /* Make embedded forms fit mobile screens */
    .form-wrapper-embedded, .content-wrapper-embedded {
        padding: 1.5rem !important;
        margin: 0 10px;
    }

    /* Fix image scaling globally EXCEPT for logos */
    img:not(.navbar-logo-img):not(.footer-logo-img) {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* ==========================================================================
   4. CONTENT SECTIONS (Keep your existing styles)
   ========================================================================== */


.about-section, .traditions-section {
    background-color: #fcf9f5;
    padding: 7rem 4rem;
}

.pillars-section {
    background: linear-gradient(to bottom, #1d140f 0%, #170e0a 100%);
    color: #ffffff;
    padding: 7rem 4rem;
}

.footer-section {
    background: #0b0603;
    padding: 4rem 2rem;
    color: #ffffff;
}

/* ==========================================================================
   5. COMPONENTS (Buttons, Cards, Forms)
   ========================================================================== */
.btn-nav, .btn-primary, .btn-cta, .about-cta-btn {
    background-color: #e08300;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.form-wrapper-embedded {
    background: rgba(20, 15, 12, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
}


/*mobile devices*/

/* 1. Safe general rule for large images only */
.main-content img, .post-image {
  max-width: 100%;
  height: auto;
}

/* 2. Target only your main wrapper for mobile layout changes */
@media screen and (max-width: 768px) {
  
  /* Change '.my-main-layout' to the actual class name of your wrapper */
  .my-main-layout {
    display: flex;
    flex-direction: column; 
    width: 100%;
    padding: 15px;
  }
  
  /* Keep your text readable without affecting global headings */
  p, li {
    font-size: 16px;
  }
}



