
:root {
    --primary-color: #0d2c40; 
    --secondary-color: #0b5161; 
    --accent1-color: #c9e4ca; 
    --accent2-color: #b7b8b6; 
    --text-light: #f4f4f4;
    --background-dark: #333333;
    --headline-font: "Cormorant", serif;
    --paragraph-font: "Lato", sans-serif;
}


body {
    font-family: var(--paragraph-font);
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    background-color: var(--text-light);
}

h1, h2, h3 {
    font-family: var(--headline-font);
}


.mission-offer-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--accent2-color);
}

.mission-card,
.offer-card {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
}

.mission-card img,
.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}







header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
}

header img {
    width: 150px;
}

header nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 700;
}


.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 10px;
}


main {
    padding: 2rem 0;
}

main section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
}


.adventure-intro, .newsletter, .book-us {
    text-align: center;
}

.adventure-intro {
    background-color: var(--accent1-color);
}

.mission-offer-cards, .mission-offer-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    background-color: var(--accent2-color);
    color: var(--primary-color);
}

.card, .mission-card, .offer-card {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
}

.card img, .center-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}


/* Update the .slideshow-container section in your rafting.css file */

.slideshow-container-section {
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
}

.slideshow-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 10px;
}

.slideshow-container img {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}


.newsletter form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.button {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.book-us {
    background-color: var(--secondary-color);
    color: var(--text-light);
}


.trips-main h1 {
    text-align: center;
    font-size: 3rem;
}

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

.trip-card {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

.trip-summary {
    text-align: center;
}

.table-container {
    overflow-x: auto;
}

.trip-summary table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.trip-summary th,
.trip-summary td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.trip-summary th {
    background-color: var(--primary-color);
    color: var(--text-light);
}


.contact-main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    font-size: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-section, .company-info-section, .employee-profiles-section {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input, .contact-form textarea, .contact-form button {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box; 
}

.contact-form button {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: none;
    cursor: pointer;
}



.employee-profiles-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.employee-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 250px;
}

.employee-profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}


footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.socialmedia {
    display: flex;
    gap: 10px; 
}

.socialmedia img {
    width: 30px;
}



.book-trip-button {
    background-color: var(--accent1-color); 
    color: var(--primary-color);
    font-weight: bold;
}



