/* Base styles */
:root {
    --primary: #d8bca9;     /* Sandy beige */
    --secondary: #2a464f;   /* Deep teal/ocean blue */
    --text: #2a464f;        /* Deep teal for text */
    --light: #f0f8f9;       /* Light blue/white */
    --accent: #8e7c6f;      /* Earthy brown */
    --light-accent: #a3d6d9; /* Light teal/aqua */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.3rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 300;
}

.btn:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: var(--light);
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu div {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 5px;
    transition: all 0.3s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Header */
/* Updated Header Styles */
header {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/wave.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 120px 2rem 60px;
}

.header-top-text {
    text-align: right;
    padding-right: 5%;
    color:black;
    margin-bottom: 2rem;
}

.header-disciplines {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.header-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.header-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.header-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--primary);
    margin: 40rem 0 10rem 0;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
    font-style: italic;
}

.header-description {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    display: block; /* Make sure it's visible */
}

.header-description p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Media query for responsive design */
@media screen and (max-width: 768px) {
    .header-disciplines {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .header-location, .header-date {
        font-size: 1rem;
    }
    
    .header-title {
        font-size: 3rem;
        margin-top: 20rem 0 10rem 0;
    }
    
    .header-top-text {
        text-align: center;
        padding-right: 0;
    }
    
    .header-description {
        padding: 1.5rem;
    }
}

/* Journey Section */
.journey {
    background-color: white;
    padding-bottom: 4rem;
}

/* Adjust the journey grid to ensure even distribution */
.journey-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.journey-item {
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--light);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.journey-item.animate {
    animation: fadeUp 0.8s ease forwards;
}

.journey-item:hover {
    transform: translateY(-10px);
}

.journey-item h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.journey-item p {
    font-weight: 300;
    line-height: 1.8;
}
.journey-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.journey-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-item:hover .journey-img {
    transform: scale(1.05);
}

@media screen and (min-width: 992px) {
    .journey-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .journey-image {
        height: 160px;
    }
}

.contact-image {
    max-width: 800px;
    margin: 2rem auto 2.5rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.contact-image:hover .footer-img {
    transform: scale(1.02);
}

@media screen and (max-width: 768px) {
    .contact-image {
        max-width: 90%;
        margin: 1.5rem auto 2rem;
    }
}

/* Guides Section */
.guides {
    background-color: var(--primary);
    position: relative;
    padding-bottom: 4rem;
}

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

.guide-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.guide-card.animate {
    animation: fadeUp 0.8s ease forwards;
}

/* Gallery layout */
.guide-gallery {
    width: 100%;
    overflow: hidden;
}

.guide-main-image {
    width: 100%;
    margin-bottom: 4px;
}

.guide-thumbnails {
    display: flex;
    gap: 4px;
}

.guide-img {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-img {
    height: 400px;
}

.thumb-img {
    height: 250px;
    max-width: 50%;
    flex: 1;
}

.guide-info {
    padding: 1.5rem;
}

.guide-name {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.guide-title {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.guide-social {
    justify-content: flex-start;
    margin: 0.5rem 0 1.5rem;
}

.guide-social a {
    background: var(--light);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}


/* Locations Section */
.locations {
    background-color: white;
    padding-bottom: 4rem;
}

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

.location-card {
    background: var(--light);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
}

.location-card.animate {
    animation: fadeUp 0.8s ease forwards;
}

.location-gallery {
    width: 100%;
}

.gallery-main {
    width: 100%;
    overflow: hidden;
}

.main-gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-gallery-img:hover {
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 5px;
}

.grid-gallery-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.grid-gallery-img:hover {
    opacity: 0.8;
}

.location-info {
    padding: 1.5rem;
}

.location-name {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.location-desc {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* What to Expect Section */
.expect {
    background-color: var(--light-accent);
    padding-bottom: 4rem;
}

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

.expect-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.expect-item:hover {
    transform: translateY(-5px);
}

.expect-item.animate {
    animation: fadeUp 0.8s ease forwards;
}

.expect-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing {
    background-color: white;
    text-align: center;
    padding-bottom: 4rem;
}

.pricing-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2.5rem 2rem;
    background: var(--light);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.animate {
    animation: fadeUp 0.8s ease forwards;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.price-title {
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
}

.price {
    font-size: 1.7rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

.price-desc {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Contact Section */
.contact {
    background-color: var(--secondary);
    color: white;
    text-align: center;
    padding-bottom: 3rem;
}

.contact h2, .contact h3 {
    color: white;
}

.contact h3 {
    margin-top: 2.5rem;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-align: center;
    background: var(--light);
    color: var(--secondary);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.guide-social {
    justify-content: flex-start;
    margin: 0.5rem 0 1.5rem;
}

.guide-social a {
    background: var(--light);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.contact-social a {
    background: white;
    color: var(--secondary);
    font-weight: 400;
}

.contact-social a:hover {
    background: var(--primary);
    color: var(--text);
}

/* Footer */
footer {
    background-color: var(--text);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.main-header-img {
    width: 100%;
    max-width: 800px;
    display: block;
    height: auto;
    transition: transform 0.5s ease;
}

.main-header-img:hover {
    transform: scale(1.03);
}

/* Media Queries */
@media screen and (max-width: 768px) {

   

    .guide-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .main-img {
        height: 300px;
    }
    
    .thumb-img {
        height: 100px;
    }

    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    
    .header-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-container {
        justify-content: space-between;
        width: 90%;
        margin: 0 auto;
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        top: 60px;
        background-color: var(--light);
        flex-direction: column;
        width: 70%;
        height: 100vh;
        transform: translateX(100%);
        transition: transform 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        align-items: center;
    }
    
    .nav-links li {
        margin: 15px 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .mobile-menu {
        display: block;
        margin-left: auto;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}