/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {

    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    text-align: center;
}

form {
    margin: 20px auto;
    width: 50%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

input, button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Header Styles */
header {
    background: linear-gradient(to right, #ff6b6b, #ffa502);
    color: white;
    text-align: center;
    padding: 25px;
}

header h1 {
    font-size: 2.8em;
    font-weight: bold;
}

header p {
    font-size: 1.3em;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background: #222;
    padding: 12px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff6b6b;
}

/* Sections */
section {
    padding: 50px;
    text-align: center;
    background: white;
    margin: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #ff6b6b;
    margin-bottom: 20px;
}

/* Video Section */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

iframe {
    width: 90%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
}

/* Destinations & Gallery */
.destinations-grid, .gallery-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.destination-card, .gallery-item {
    background: #ff6b6b;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.destination-card:hover, .gallery-item:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    background: #222;
    color: white;
    padding: 20px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    iframe {
        width: 100%;
        height: 250px;
    }

    .destinations-grid, .gallery-grid {
        flex-direction: column;
        align-items: center;
    }
}

.planner-btn {
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.planner-btn:hover {
    background-color: #218838;
}

.destination-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.destination-btn {
    background: #ff6b6b;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    width: 220px; /* Fixed width */
    height: 60px; /* Fixed height */
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Disable click effect for "Coming Soon" buttons */
.disabled {
    pointer-events: none; /* Prevents clicks */
    opacity: 0.7;
}

/* Align "Coming Soon" text below button */
.coming-soon {
    font-size: 12px;
    display: block;
    position: absolute;
    bottom: -18px; /* Moves text below button */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    pointer-events: none;
}
.planner-btn {
    display: inline-block;
    margin-top: 20px; /* Adds space above the button */
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
}
