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

body {
    /* font-family: 'Georgia', serif; */
    background-color: #fff8e6;
    /* color: #4a4030; */
    /* line-height: 1.6; */
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* @font-face {
    font-family: 'Qipao';
    src: url('../font/Qipao-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/Satoshi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */

/* @font-face {
    font-family: 'Qipao';
    src: url('./font/Qipao-Regular.woff2') format('woff2'),
         url('./font/Qipao-Regular.woff') format('woff'),
         url('./font/Qipao-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} */

 @font-face {
  font-family: 'FrasthaThin';
  src: url('./font/Frastha-Thin-for-titles.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


@font-face {
    font-family: 'openSauce';
    src: 
        /* url('./font/Satoshi-Regular.woff2') format('woff2'),
        url('./font/Satoshi-Regular.woff') format('woff'), */
        url('./font/OpenSauceOne-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* Apply Qipao font to headers */
h1,
h2{
    font-family: 'FrasthaThin', sans-serif;
    color: #695c34;
    letter-spacing: 7px; 
    font-size: 3rem;
    /* Custom color */
}

/* Apply Satoshi font to all other text */
body,
p,
span,
a,
div,
button,
input,
textarea,
h3,
h4,
h5,
h6 {
    font-family: 'openSauce', sans-serif;
    color: #4a4030;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.3rem;
        /* Adjust as needed */
    }

    h2 {
        font-size: 1.2rem;
        /* Adjust as needed */
    }

    h3 {
        font-size: 2rem;
        /* Adjust as needed */
    }

    body,
    p,
    span,
    a,
    div,
    button,
    input,
    textarea,
    li,
    h3,
    h4,
    h5,
    h6 {
        font-size: 1rem;
        /* Adjust as needed */
    }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
    width: 100%;
}

.title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    line-height: 1.2;
    /* margin-bottom: 1rem; */
    color: #4a4030;
}


.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-light {
    border: 1px solid #4a4030;
    color: #4a4030;
    background: transparent;
}

.btn-light:hover {
    background-color: #4a4030;
    color: #fff8e6;
}

.btn-dark {
    background-color: #4a4030;
    color: #fff8e6;
    border: none;
}

.btn-dark:hover {
    background-color: #5c5038;
}


/* Button - Improved */
.cta-btn {
    display: inline-block;
    background-color: #4a4030;
    color: #fff8e6;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-btn:hover {
    background-color: #5c5038;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover::before {
    left: 100%;
}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Star background */
.stars-bg {
    position: relative;
}

.star-bg {
    position: absolute;
    font-size: 1.5rem;
    color: #d3cbb3;
    opacity: 0.5;
    animation: twinkle 3s infinite alternate;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .retreat-title {
        font-size: 4rem;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .pricing-card {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0.8rem 3%;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(245, 236, 215, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.5s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        max-width: 300px;
        box-shadow: none;
        background-color: transparent;
        margin-top: 1rem;
        display: none;
        transform: none;
    }

    .dropdown:hover .dropdown-content {
        animation: none;
        transform: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        flex-direction: column;
        padding-top: 4rem;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-images {
        order: 1;
        margin-bottom: 2rem;
    }

    .primary-image {
        max-width: 100%;
    }

    .secondary-image {
        display: none;
    }

    .retreat-title {
        font-size: 3rem;
    }

    .contact-container {
        flex-direction: column;
    }
}

.custom-divider {
    width: 30%;
    /* Default for larger screens */
    height: 2px;
    background-color: #a18d58;
    /* Match your site's theme */
    margin: 2rem auto;
    /* Center it with spacing */
    border-radius: 2px;
    /* Smooth edges */
    opacity: 0.8;
    /* Slight transparency */
}

/* For small screens (below 768px) */
@media (max-width: 768px) {
    .custom-divider {
        width: 60%;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #695c34;
    /* Your website color */
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

.surfpackage-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.surfpackages-cta {
    text-align: center;
    margin-top: auto;
    /* Pushes it to the bottom */
    padding: 1rem;
    /* Adds some space */
}

.button-container {
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    /* Center the buttons */
    align-items: center;
    gap: 16px;
    /* Space between buttons */
    margin-top: 30px;
    flex-wrap: wrap;
    /* Stack on small screens */
}

