/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: rgb(200,195,188);
    background-color: rgb(30,32,33);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2 {
    color: rgb(174,194,211);
}
a {
    text-decoration: none;
    color: #1e88e5;
}
a:hover {
    text-decoration: underline;
}

/* Top Menu */
.top-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #34495e;
    color: white;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.logo {
    font-size: 1.5em;
    font-weight: bold;
    margin-right: auto;
    border: 0;
    cursor: pointer;
}
.logo A {
    text-decoration: none;
    color: white !important;
}
.logo A:hover {
    text-decoration: none;
}
.logo IMG {
    max-width: 45px;
    max-height: 45px;
}
.logo SPAN {
    margin-left: 10px;
    top: -10px;
    position: relative;
}
.menu {
    list-style: none;
    display: flex;
    gap: 15px;
}
.menu li a {
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.menu li a:hover {
    background-color: #1e88e5;
}
.language-switch {
    margin: 0 50px;
    width: 60px;
}
.language-switch select {
    background-color: rgb(24,26,27);
    color: rgb(232,230,227);
    border: 1px solid rgb(62,68,70);
    padding: 5px;
    border-radius: 5px;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #34495e;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 10px 0;
        margin: 10px -10px;
    }
    .menu.show {
        display: flex;
    }
    .menu li {
        text-align: center;
        padding: 10px 0;
    }
    .menu li a {
        display: block;
    }
    .gallery-row {
        display: flex;
    }
}
.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .gallery-row {
        display: block !important;
    }
}
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #1e88e5;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    flex: 1 1 100%;
    padding: 20px;
}

.hero-text h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    text-align: justify;
}

.hero-display-image {
    width: 300px;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.covered-campers-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.cta-buttons {
    margin-top: 20px;
}
.cta-buttons .btn {
    margin: 10px;
    padding: 10px 20px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.cta-buttons .btn:hover {
    background-color: #34495e;
}

/* Section Styles */
.section {
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
}
.grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.card {
    background-color: rgb(24,26,27);
    padding: 20px;
    border: 1px solid rgb(58,62,65);
    border-radius: 5px;
    width: 340px;
    box-sizing: border-box;
    text-align: center;
}
.card img {
    width: 300px;
    height: auto;
    border-radius: 5px;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;
}
.gallery-row {
    gap: 10px;
    justify-content: center;
    width: 100%;
}
.gallery-row a {
    text-align: center;
}
.gallery-row img {
    width: 300px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal img {
    max-width: 800px;
    max-width: 85%;
    width: auto; /* Keep original aspect ratio */
    height: auto;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.modal:target {
    display: flex; /* Display modal when targeted */
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    z-index: 1001;
}

/* Contact Form */
form {
    max-width: 100%;
    width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input, textarea, button {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
}
button {
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #34495e;
}

.pricing-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
.pricing-details ul li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #34495e;
    color: white;
}
