/* ========================================
   CSS VARIABLES - COLOR PALETTE
   ======================================== */
:root {
    /* Brand Colors */
    --color-primary: #507f79;      /* Teal/Dark Turquoise */
    --color-secondary: #638430;    /* Olive Green */
    --color-accent: #c3d898;       /* Light Green */
    --color-info: #b4e5e6;         /* Light Cyan */
    --color-light: #ffffff;        /* White */
    
    /* Semantic Colors */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    
    /* Button Colors */
    --btn-primary-bg: var(--color-primary);
    --btn-primary-hover: #3f6661;
    --btn-secondary-bg: var(--color-secondary);
    --btn-secondary-hover: #4f6827;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.cdnfonts.com/css/neue-montreal');

 
 body, p {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 1.1rem;
    line-height: 1.4rem;
    margin: 0;
    padding: 0;
    color: var(--color-text);
    font-weight: 400;
}

/* ========================================
   TYPOGRAPHY SYSTEM
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400 !important; /* Imperial Script only has weight 400 */
    text-transform: none; /* Scripts often look broken in ALL CAPS */

}


.font-title{
    font-family: 'Montserrat', sans-serif;
}

h1, .h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    line-height: 4rem;
}

.title{
     font-size: 1.55rem;
    line-height: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}
.sub-title{
    font-size: 1.25rem;
    line-height: 1.4rem;
    font-family: 'Montserrat', sans-serif;
}

h2, .h2 {
    font-size: 2.6rem;
    line-height: 3.1rem;
     font-family: 'Montserrat', sans-serif;
}

h3, .h3 {
    font-size: 2.2rem;
    line-height: 2.5rem;
     font-family: 'Montserrat', sans-serif;
}

h4, .h4{
    font-size: 1.9rem;
  
    line-height:2.4rem;
     font-family: 'Montserrat', sans-serif;
}

h5, .h5 {
    font-size: 1.25rem;
    line-height: 1.rem;
     font-family: 'Montserrat', sans-serif;
}

h6, .h6 {
    font-size: 1.125rem;
    line-height: 1.4rem;
     font-family: 'Montserrat', sans-serif;
}

.big-h1{
    font-size: 7.5rem;
    line-height: 8rem;
}
.curved-font{
  font-family: "Dancing Script", cursive;
  font-weight: 400 !important; /* Imperial Script only has weight 400 */
  text-transform: none; /* Scripts often look broken in ALL CAPS */
}



/* ========================================
   RESPONSIVE TYPOGRAPHY
   ======================================== */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    h4 { font-size: 1.75rem; }
    h5 { font-size: 1.5rem; }
    h6 { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 3rem; }
    h3 { font-size: 2.25rem; }
    h4 { font-size: 2rem; }
    h5 { font-size: 1.75rem; }
    h6 { font-size: 1.5rem; }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    background-color: var(--color-background);
}

.navbar-nav .nav-link {
    padding: 0rem 10px;
    color: var(--color-text);
    font-weight: 400;
    transition: color var(--transition-normal);
    font-size: 1rem;
   font-family: 'Montserrat', sans-serif;
}

.navbar-nav .nav-item{
    padding: 0px 10px;
}
 
.navbar-nav .nav-link.active { 
    font-weight: 500;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn{
    padding: 10px 30px;
    border-radius: 10px;
    border-width: 1px;
    font-weight: 500;
}

.btn-primary {
    background-color: transparent;
    border-color: var(--btn-primary-bg);
    color:  var(--btn-primary-bg);
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    background-color: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
    color: var(--color-light);
}

.btn-primary-white{
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    transition: all var(--transition-normal); 
}
.btn-primary-white:hover{

    border-color: #fff;
    color: #fff;
}

.btn-secondary {
    background-color: var(--btn-secondary-bg);
    border-color: var(--btn-secondary-bg);
    color: var(--color-light);
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background-color: var(--btn-secondary-hover);
    border-color: var(--btn-secondary-hover);
    color: var(--color-light);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 95vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated background with zoom-out effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomOut 3.5s ease-out forwards;
    z-index: 0;
}

.hero-section.hero-section-home::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/home/bg.jpg');
}

.hero-section-image {
    overflow: hidden;
}

.hero-section-image img {
    animation: zoomOut 3.5s ease-out forwards;
}



@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.what-to-do-banner{
       height: 100vh;
    min-height: 600px;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/what-to-do.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-banner-1{
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/home/banner-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-banner-2{
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/home/banner-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}



.banner-title{
      position: relative;
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-title-beyond-the-village{
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/about/beyond-the-village.jpg');
}
.banner-title-faq-2{
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/faq/faq2.jpg');
}

.banner-title-open-sky{
     background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/home/open-sky.jpg');
    
}

.hrsecondary{
    border-width: 2px;
    color: var(--btn-secondary-bg);
    margin-top: 30px;
    margin-bottom: 30px;
}
.hrthird{
 border-width: 2px;
    color: #b4e5e6;
    margin-top: 15px;
    margin-bottom: 15px;
    
}
.hero-logo {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    z-index: 10;
}

.hero-content {
    text-align: center;
    z-index: 5;
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-content h1 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.hero-content p {
    color: var(--color-primary);
}

.hero-cta {
    position: absolute;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 10;
}

.hero-cta .btn {
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-logo {
        top: var(--spacing-sm);
        left: var(--spacing-sm);
    }
    
    .hero-logo img {
        height: 40px;
    }
    /*
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }*/
    
    .hero-cta {
        bottom: var(--spacing-md);
        right: 50%;
        transform: translateX(50%);
    }
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background-color: var(--color-primary);
}

footer a {
    transition: color var(--transition-normal);
}

footer a:hover {
    color: var(--color-light) !important;
}

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

.bg-secondary-color {
    background-color: var(--color-secondary);
}

.bg-accent-color {
    background-color: var(--color-accent);
}

.bg-info-color {
    background-color: var(--color-info);
}

.text-primary-color,
.text-primary-color p,
.text-primary-color h1,
.text-primary-color h2,
.text-primary-color h3,
.text-primary-color h4,
.text-primary-color h5,
.text-primary-color h6 {
    color: var(--color-primary) !important;
}

.text-secondary-color,
.text-secondary-color p,
.text-secondary-color h1,
.text-secondary-color h2,
.text-secondary-color h3,
.text-secondary-color h4,
.text-secondary-color h5,
.text-secondary-color h6 {
    color: var(--color-secondary) !important;
}

.text-accent-color,
.text-accent-color p,
.text-accent-color h1,
.text-accent-color h2,
.text-accent-color h3,
.text-accent-color h4,
.text-accent-color h5,
.text-accent-color h6 {
    color: var(--color-accent) !important;
}

/* ========================================
   AMENITIES/FEATURES GRID
   ======================================== */
.amenities-section {
    background-color: var(--color-background);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.amenity-icon {
    width: 80px;
    height: 80px;
}

.amenity-icon:hover {
    transform: scale(1.05);
}

.amenity-icon img {
    width: 100%;
    height: auto; 
}

.amenity-text {
    color: var(--color-primary);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Grid */
@media (min-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .amenity-icon {
        width: 80px;
        height: 80px;
    }
    
   
    
    .amenity-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ========================================
   SHADOWS
   ======================================== */
.shadow-soft {
    box-shadow: 0 2px 8px rgba(80, 127, 121, 0.1);
}

.shadow-medium {
    box-shadow: 0 4px 16px rgba(80, 127, 121, 0.15);
}

.shadow-strong {
    box-shadow: 0 8px 24px rgba(80, 127, 121, 0.2);
}


.block-all{
    display: block;
}


.left-border-box-1{
    border-left: solid 2px var(--color-accent);
    padding-left: 15px;
}

.left-border-box-2{
    border-left: solid 2px var(--color-info);
    padding-left: 15px;
}

.d-p-1{
    padding-top: 60px;
    padding-bottom: 60px;
}

.header-wrapper{
    margin-bottom: 30px;
  
}
.header-wrapper h2{
      font-size: 4.5rem;
    line-height: 5rem;
}
.header-wrapper span{
    position: relative;
    top: -25px;
    font-size: 5rem;
    font-weight: 600;
}

.img-slide img{
    width: 33%;
    display: inline-block;
    margin-bottom: 1%;
    margin-right: 1%;
}

/* ========================================
   TYPEWRITER TEXT ANIMATION
   ======================================== */

/* Basic typewriter effect */
/*
.typewriter-text {
    overflow: hidden;
    border-right: 3px solid var(--color-primary);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.05em;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
    display: inline-block;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--color-primary);
    }
}


.typewriter-text.no-cursor {
    border-right: none;
}


.typewriter-line {
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    display: block;
}

.typewriter-line.typing {
    animation: typingFadeIn 0.5s forwards;
}

@keyframes typingFadeIn {
    to {
        opacity: 1;
    }
}
*/

/* ========================================
   WHAT TO DO BANNER SECTION
   ======================================== */
.what-to-do-banner {
    position: relative;
    min-height: 700px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/what-to-do.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: var(--spacing-xl) var(--spacing-lg);
}

 
/*
.what-to-do-banner div  {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    
    color: var(--color-light);
}


.what-to-do-banner p:nth-child(1) {

    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 4rem;
    color: var(--color-light);
}
*/


/* Top intro text */
/*
.what-to-do-banner .hero-content p:nth-child(1) {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 4rem;
    color: var(--color-light);
}


.what-to-do-banner .hero-content p:nth-child(2) {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0.5rem 0;
    color: var(--color-light);
}


.what-to-do-banner .hero-content p:nth-child(3) {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0.5rem 0;
    color: var(--color-light);
    text-align: center;
}


.what-to-do-banner .hero-content p:nth-child(4) {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0.5rem 0;
    color: var(--color-light);
    text-align: right;
}


.what-to-do-banner .hero-content p:nth-child(5) {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0.5rem 0;
    color: var(--color-light);
    text-align: right;
}
*/
/* Script/cursive style for special words */
/*
.what-to-do-banner .hero-content .script {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 600;
    font-style: italic;
    margin-left: 0.3rem;
}*/

 
@media (min-width: 991px) {
 
 .block-pc{
    display: block;
 }


}

/* Responsive adjustments */
@media (max-width: 992px) {
    .what-to-do-banner .hero-content p:nth-child(2),
    .what-to-do-banner .hero-content p:nth-child(3),
    .what-to-do-banner .hero-content p:nth-child(4),
    .what-to-do-banner .hero-content p:nth-child(5) {
        font-size: 2.5rem;
    }
    
    .what-to-do-banner .hero-content .script {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .what-to-do-banner {
        min-height: 500px;
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .what-to-do-banner .hero-content p:nth-child(1) {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .what-to-do-banner .hero-content p:nth-child(2),
    .what-to-do-banner .hero-content p:nth-child(3),
    .what-to-do-banner .hero-content p:nth-child(4),
    .what-to-do-banner .hero-content p:nth-child(5) {
        font-size: 1.75rem;
        text-align: left !important;
    }
    
    .what-to-do-banner .hero-content .script {
        font-size: 2.25rem;
    }
    
    .what-to-do-banner .hero-content p:last-child {
        font-size: 1rem;
        margin-top: 2rem;
        text-align: center;
    }
}


.booking-section {
    background: rgb(216, 229, 191);
}

.booking-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4a7c6f;
    margin-bottom: 0;
    line-height: 1;
}

.booking-subtitle {
    font-family: 'Dancing Script', cursive; /* or your script font */
    font-size: 2.5rem;
    color: #4a7c6f;
    margin-left: 10px;
}

/*
.booking-input {
    border: none;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 1rem;
    background-color: #fff;
}

.booking-input:focus {
    box-shadow: none;
    outline: none;
}

.booking-input::placeholder {
    color: #a0c4a8;
}
*/

.form-control,
.form-select{
    border-radius: 0px;
}


.form-select,
.form-control::placeholder   {
    color: #ccc;
}

.form-select.booking-input:has(option:checked:not([disabled])) {
    color: #333;
}

.form-v2 .form-control{
    background-color: #f5f5f5;
    border:0px;
}
.form-v2 label{
    font-weight: 600;
}
.btn-booking {
    background-color: transparent;
    border: 2px solid #4a7c6f;
    color: #4a7c6f;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-booking:hover {
    background-color: #4a7c6f;
    color: #fff;
}

.booking-input.is-invalid {
    border: 2px solid #dc3545;
}

.error-text {
    display: block;
    margin-top: 5px;
}

#successMessage {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
}

#errorMessage {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
}

.list-unstyled li{
    margin-top: 10px;
    color: #fff;
}

.list-unstyled a{
    text-decoration: none;
    color: #fff;
}