:root {
    --primary-color: #79c6c0; /* Soft Teal */
    --secondary-color: #f7a390; /* Warm Coral/Sandy Orange */
    --accent-color: #f0db4f; /* Sunny Yellow */
    --neutral-bg: #f9f6f2; /* Off-white/Light Beige */
    --text-color: #4A4A4A; /* Dark Grey */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif    ;
    --script-font: 'Satisfy', cursive; /* For special accents like the logo maybe */
    --nav-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff; /* White base, sections can have other BGs */
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

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

img {
    max-width: 100%;
    display: block; /* remove bottom space */
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
}
h2.section-title::after { /* Simple underline accent */
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 0;
}

.section-padding {
    padding: 60px 0;
}

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

/* Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: var(--nav-height);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--script-font); /* Or your Byahe ni font */
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

.nav-toggle { /* Hamburger for mobile */
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: transform 0.3s ease;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    /* Replace with your hero image. Image source: Unsplash */
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: var(--nav-height); /* Account for fixed nav */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: var(--script-font); /* Example usage of script font */
    color: #fff; /* Override section title color if needed */
}
.hero-content h1::after { display: none; } /* Remove underline for hero h1 */


.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: #e56a46; /* Darker shade */
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}


/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.about-img {
    flex: 1;
    max-width: 300px; /* Adjust as needed */
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.about-text {
    flex: 2;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}
.service-card img { /* Placeholder for icons */
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--accent-color); /* temp BG */
    border-radius: 50%;
    padding: 10px; /* if icons are smaller than container */
}
.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.destination-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Slick pop effect */
}
.destination-card:hover {
    transform: scale(1.05);
}
.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.destination-card:hover img {
    transform: scale(1.1);
}
.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 20px;
    padding-top: 40px; /* Make space for gradient */
}
.destination-info h3 {
    margin-bottom: 5px;
    color: #fff;
}
.destination-info h3::after { display:none; }

/* Testimonials Section */
.testimonial-slider {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* Simple wrap for now */
    justify-content: center;
}

.testimonial {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    flex-basis: 45%; /* Two testimonials per row approx */
    min-width: 280px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial h4 {
    font-weight: bold;
    color: var(--secondary-color);
    text-align: right;
}

.testimonial h4::after { display: none; }

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    display: grid;
    gap: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color-transparent, rgba(121, 198, 192, 0.3));
}
.contact-form button {
    justify-self: center; /* Center button if form isn't full width of its container */
}

/* Footer */
footer {
    background: var(--text-color);
    color: #f0f0f0;
    padding: 30px 0;
    text-align: center;
}
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.social-links a {
    margin: 0 10px;
    display: inline-block; /* Helps with image alignment if needed */
}
.social-links img {
    width: 24px; /* Adjust for your icons */
    height: 24px;
    vertical-align: middle; /* Good practice for images in text flow */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.social-links a:hover img {
    opacity: 1;
}

/* Smooth Scroll Animations (using classes added by JS) */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in {
    opacity: 0;
}
.fade-in.visible {
    opacity: 1;
}
.fade-in-up {
    transform: translateY(50px);
    opacity: 0;
}
.fade-in-up.visible {
    transform: translateY(0);
    opacity: 1;
}
.slide-in-left {
    transform: translateX(-100px);
    opacity: 0;
}
.slide-in-left.visible {
    transform: translateX(0);
    opacity: 1;
}
.slide-in-right {
    transform: translateX(100px);
    opacity: 0;
}
.slide-in-right.visible {
    transform: translateX(0);
    opacity: 1;
}

/* Animation Delays */
.delay-1.visible { transition-delay: 0.2s; }
.delay-2.visible { transition-delay: 0.4s; }
.delay-3.visible { transition-delay: 0.6s; }


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth slide */
        backdrop-filter: blur(5px); /* Nice glassy effect if supported */
    }
    .nav-links.nav-active {
        transform: translateX(0);
    }
    .nav-links li {
        margin: 20px 0;
    }
    .nav-links a {
        font-size: 1.3rem;
    }
    .nav-toggle {
        display: block;
    }
    .nav-open .hamburger {
        transform: rotate(45deg);
    }
    .nav-open .hamburger::before {
        transform: rotate(-90deg);
        top: 0;
    }
    .nav-open .hamburger::after {
        transform: rotate(-90deg);
        bottom: 0;
        opacity: 0; /* Hide one bar to form X */
    }


    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    h2.section-title { font-size: 2rem; }

    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-img { margin-bottom: 20px; }

    .testimonial-slider {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .container {
        max-width: 100% !important;
        padding: 0 8px !important;
    }
    img, .about-img, .destination-card img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    .about-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4a90e2;
    outline: none;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4a90e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-loader {
    display: inline-block;
    margin-left: 8px;
}

/* Disable form while submitting */
.form-submitting {
    opacity: 0.7;
    pointer-events: none;
}