/* BASIC STYLE */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}
h1, h2, h3, h4 {
    font-weight: 600;
}
header {
    background-color: #4ca3dd;
    color: white;
    text-align: center;
    padding: 15px 0;
    letter-spacing: 2px;
    font-size: 2em;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* HERO SECTION */
.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: 350px; /* reduced from 500px */
    object-fit: cover;
    border-bottom: 4px solid #4ca3dd;
}  
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
}

.btn {
    display: inline-block;
    background: #ffb347;
    color: #333;
    padding: 8px 16px;
    margin-top: 10px;
    border-radius: 5px;
    text-decoration: none;
}

.btn:hover {
    background: #ffd480;
}

/* INTRO */
.intro {
    text-align: left;
    padding: 30px 15px;
    max-width: 900px;
    margin: 0 auto;
}

/* FAMILY SECTION */
.nature {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #e9f5ff;
    padding: 30px 15px;
}

.nature-text {
    width: 500px;
    max-width: 90%;
}

.nature img {
    width: 350px;
    max-width: 90%;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* BACK TO TOP BUTTON */
.back-to-top {
    display: block;
    text-align: center;
    margin: 40px auto;
    background-color: #4ca3dd;
    color: white;
    width: 140px;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}

.back-to-top:hover {
    background-color: #3a91c7;
}

/* FOOTER */
footer {
    background-color: #4ca3dd;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}
    .footer-content {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        background-color: #3a91c7;
        color: white;
        padding: 30px 10px;
    }
    
    .footer-content h4 {
        margin-bottom: 10px;
        color: #ffd480;
    }
    
    .footer-content a {
        color: white;
        text-decoration: none;
    }
    
    .footer-content a:hover {
        text-decoration: underline;
    }
    
    .footer-about, .footer-links, .footer-contact {
        width: 250px;
        margin: 10px;
    }
    
    .copyright {
        background-color: #4ca3dd;
        padding: 10px;
        text-align: center;
        color: white;
    }
/* DESTINATIONS PAGE */
.page-intro {
    text-align: center;
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.destination {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.destination:hover {
    transform: scale(1.02);
}

.destination img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.destination h3 {
    margin: 15px;
    color: #4ca3dd;
    font-size: 1.3rem;
}

.destination p {
    margin: 0 15px 15px 15px;
    flex-grow: 1;
    line-height: 1.5;
}

/* BOOKING BUTTON */
.destination .btn {
    display: inline-block;
    background: #4ca3dd;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    text-align: center;
}

.destination .btn:hover {
    background: #3a91c7;
}

/* DESTINATION LINKS – stylish tags */
.destination-links {
    list-style: none;
    padding: 0;
    margin: 15px;
}

.destination-links li {
    margin-bottom: 10px;
}

.destination-links a {
    display: block;
    background: linear-gradient(135deg, #eaf6ff, #ffffff);
    padding: 10px 14px;
    border-left: 5px solid #4ca3dd;
    border-radius: 8px;
    text-decoration: none;
    color: #3a8fc2;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 0.97rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.destination-links a:hover {
    background: #4ca3dd;
    color: white;
    transform: translateX(5px);
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .destination p {
        text-align: center;
    }

    .destination img {
        height: 200px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nature {
        flex-direction: column;
        text-align: center;
    }

    .hero img {
        height: 220px;
    }

    .hero-text {
        font-size: 0.9em;
    }
}
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.activity-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.activity-card:hover {
    transform: scale(1.03);
}

.activity-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.activity-list {
    list-style: none;
    padding: 0;
}

.activity-list li {
    margin-bottom: 6px;
}

.activity-list a {
    color: #4ca3dd;
    text-decoration: none;
    font-size: 0.95em;
}

.activity-list a:hover {
    text-decoration: underline;
}
/* TRAVEL TIPS PAGE */

/* Light background behind the whole page */
main {
    background: #f8fbff;
}

/* Travel Tips Grid */
.tips-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}


.tip-box {
    background: linear-gradient(135deg, #ffffff, #e8f4ff);
    border-left: 6px solid #4ca3dd;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.tip-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 18px rgba(0,0,0,0.20);
}

.tip-box h3 {
    color: #3a8fc2;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tip-box p {
    margin-bottom: 10px;
}

.tips-links {
    list-style: none;
    padding-left: 0;
}

.tips-links li {
    margin-bottom: 6px;
}

.tips-links a {
    font-weight: bold;
    color: #337ab7;
    text-decoration: none;
}

.tips-links a:hover {
    color: #ffb347;
    text-decoration: underline;
}

/* BOOKING FORM */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.booking-form {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: grid;
    gap: 15px;
}

.booking-form label {
    font-weight: bold;
    color: #3a8fc2;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #c9d7e3;
    border-radius: 8px;
    font-size: 1em;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #4ca3dd;
    box-shadow: 0 0 4px rgba(76,163,221,0.5);
}

.submit-btn {
    background: #4ca3dd;
    color: white;
    font-size: 1.1em;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #3a91c7;
}
/* CONTACT PAGE */
.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-form, .contact-info {
    flex: 1 1 450px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form label {
    font-weight: bold;
    color: #3a8fc2;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cfd9e3;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4ca3dd;
    box-shadow: 0 0 4px rgba(76,163,221,0.5);
}

.contact-info h3 {
    color: #3a8fc2;
    margin-top: 10px;
}

.contact-info a {
    color: #4ca3dd;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #4ca3dd;
    color: white;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #3a91c7;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}



