/* GENERAL */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") no-repeat center center fixed;
    background-size: cover;
}


header {
    background: #3498db;
    color: white;
    padding: 20px;
    text-align: center;
}


nav {
    background: #2c3e50;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}


main {
    flex: 1;
}

.hero {
    background: url("images/abcd.jpg") no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 40px;
}


.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #c0392b;
}


.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.feature-box {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.destinations-page {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    margin: 20px;
    border-radius: 10px;
}

.destinations-layout {
    display: flex;
    gap: 30px;
}


.destination-info-container {
    width: 50%;
}

.destination-info {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.destination-info:nth-child(even) {
    background: #f9f9f9;
}


.destinations-container {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;   /* FIXES STRETCHING */
}


.card {
    width: 200px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    display: flex;
    flex-direction: column;
    align-items: center;

    height: auto;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}


.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    margin-top: 10px;
}

/* TIPS PAGE */
.tips-page {
    text-align: center;
    padding: 30px;
}

.tips-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tip-card {
    background: white;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
}


.booking-box form {
    background: transparent;   /* remove white box */
    padding: 0;
}
form input, form textarea {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
}

form button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

form button:hover {
    background: #2980b9;
}


footer {
    background: #3498db;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: auto;
}
.destination-info img {
    width: 100%;
    max-width: 400px;   /* limits size */
    height: 200px;      /* fixed height */
    object-fit: cover;  /* keeps proportions */
    border-radius: 8px;
    margin-top: 10px;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 50px;
    background: #f5e6dc; /* soft beige like your image */
    border-radius: 10px;
    margin: 30px;
}


.contact-left {
    width: 40%;
}

.contact-left h2 {
    font-size: 36px;
    color: #8b4513;
}

.contact-left .subtitle {
    font-style: italic;
    margin-bottom: 15px;
}

.contact-left .email {
    margin-top: 20px;
    font-weight: bold;
}


.contact-right {
    width: 50%;
}


.contact-right form {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    gap: 10px;
}

.row div {
    flex: 1;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ccc;
}


.contact-right button {
    background: #a0522d;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.contact-right button:hover {
    background: #7a3b1f;
}

.booking-body {
    background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee") no-repeat center center/cover;
}


.booking-main {
    text-align: center;
    padding: 50px 20px;
    color: white;
}


.booking-title {
    font-size: 40px;
    color: #2c3e50;
    background: rgba(255,255,255,0.8);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
}


.booking-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 25px;
    border-radius: 10px;
    width: 300px;
    margin: auto;
}

.booking-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.booking-box input,
.booking-box select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.booking-box input::placeholder {
    color: #dddddd;
}
.booking-box select:focus {
    outline: none;
    border: 1px solid #00a8a8;
}




.radio-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}


.row {
    display: flex;
    gap: 10px;
}


.booking-box button {
    background: #00a8a8;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
}

.booking-box button:hover {
    background: #007777;
}
nav a.active {
    color: #e74c3c;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .destinations-layout {
        flex-direction: column;
    }

    .destination-info-container,
    .destinations-container {
        width: 100%;
    }

    .contact-section {
        flex-direction: column;
    }

    .features {
        flex-direction: column;
    }
}