/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Header and Fixed Logo styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-logo {
    position: relative;
    padding: 5px;
    transition: transform 0.3s;
    z-index: 1003;
}

.logo-placeholder img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.logo-text {
    color: #333;
    margin-left: 8px;
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
}

.fixed-logo {
    position: relative;
    padding: 10px;
    transition: transform 0.3s;
}

.fixed-logo:hover {
    transform: scale(1.05);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 1002;
    background: none;
    padding: 8px;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    margin: 4px auto;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    header {
        padding: 8px 16px;
        height: 44px;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 0 20px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
    }

    .header-nav.active {
        transform: translateX(-300px);
    }

    .nav-button {
        width: 100%;
        text-align: left;
        padding: 14px 20px;
        font-size: 17px;
        background: none;
        border-radius: 0;
        color: #333;
        font-weight: 400;
        transition: all 0.3s ease;
    }

    .nav-button:hover {
        color: #e67e22;
        background-color: rgba(230, 126, 34, 0.1);
    }
}

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    letter-spacing: 2px;
}

/* Header Navigation styles */
.header-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 15px;
}

.nav-button {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-button:hover {
    color: #e67e22;
    transform: translateY(-2px);
}

.nav-button:active {
    background: #e67e22;
    color: white;
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: auto;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 0 0 0 10px;
}

.nav-container {
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.logo-placeholder {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    padding: 5px 10px;
    border: 2px solid #2c3e50;
}

.nav-links {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e67e22;
}

/* Contact info carousel */
.contact-info-carousel {
    width: 150px;
    overflow: hidden;
}

.swiper-slide {
    text-align: right;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
    white-space: nowrap;
}

/* Hero section with parallax */
.hero-parallax {
    height: 100vh;
    background-image: url('images/placeholder-hero.svg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.parallax-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.parallax-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d35400;
}

/* Featured trips section */
.featured-trips {
    padding: 5rem 10%;
    background-color: #f9f9f9;
}

.featured-trips h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.trip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trip-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.trip-card:hover {
    transform: translateY(-5px);
}

.trip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trip-card h3 {
    padding: 1rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

.trip-card p {
    padding: 0 1rem;
    color: #666;
}

.trip-button {
    display: block;
    margin: 1rem;
    padding: 0.8rem;
    text-align: center;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.trip-button:hover {
    background-color: #34495e;
}

/* About preview section */
.about-preview {
    padding: 5rem 10%;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.about-preview h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-preview p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: #666;
}

.learn-more-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.learn-more-button:hover {
    background-color: #34495e;
}

/* Footer styles */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 10% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e67e22;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        width: 100%;
        border-radius: 0;
    }

    .nav-container {
        flex-direction: column;
        padding: 0.5rem;
        align-items: flex-end;
    }

    .nav-links {
        flex-direction: column;
        text-align: right;
        gap: 0.5rem;
        margin: 0.5rem 0;
    }

    .contact-info-carousel {
        width: 100%;
        margin-top: 0.5rem;
    }

    .parallax-content h1 {
        font-size: 2.5rem;
    }

    .parallax-content p {
        font-size: 1.2rem;
    }

    .featured-trips,
    .about-preview {
        padding: 3rem 5%;
    }
}

/* Header Navigation styles */
.header-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 15px;
}

.nav-button {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.nav-button:active {
    background: #e67e22;
    color: white;
    transform: translateY(0);
}