/* style.css - Advance CSS for Vandana Travels Website (Travel Theme) */

/* --- CSS Variables and Global Styles --- */
:root {
    --primary-color: #0077b6; /* Deep Sky Blue - Trust & Travel */
    --secondary-color: #ff9f1c; /* Vibrant Orange - Adventure & Energy */
    --accent-color: #48cae4; /* Light Aqua - Freshness */
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa; 
    --text-color: #333333;
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    --max-width: 1250px;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Oswald:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 25px;
}

h1, h2, h3 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 18px;
    text-align: justify;
}

/* --- ADVANCED HEADER SECTION (Floating & Transparent) --- */
.main-header {
    background-color: var(--primary-color);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--light-color);
    font-family: var(--font-primary);
    font-size: 2.5em;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.logo a span {
    color: var(--secondary-color); /* Highlight part of the name */
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 400;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    text-transform: uppercase;
}

/* Advanced Navigation Pill Effect */
.navbar ul li a:hover,
.navbar ul li a.active {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* --- Main Content Section --- */
main {
    flex: 1; 
    padding: 60px 0;
}

.hero {
    background: url('https://via.placeholder.com/1250x650/0077b6/ffffff?text=Vandana+Travels+Explore+the+World') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
}

.hero-text {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    animation: fadeInDown 1.5s ease-out;
}

.hero h1 {
    font-size: 4.5em;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.5em;
    color: var(--light-color);
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 16px 45px;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #ffb547;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 159, 28, 0.5);
}

/* Section Styling */
.section {
    padding: 50px 0;
    border-bottom: 1px solid #e0e0e0;
}

.section:last-child {
    border-bottom: none;
}

.detail-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Image Placeholder Styling */
.img-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    font-family: var(--font-primary);
    font-size: 1.6em;
    font-weight: 600;
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.highlight-blue {
    color: var(--primary-color);
    font-weight: 700;
}

/* --- ADVANCED FOOTER SECTION --- */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px 0;
    margin-top: auto; 
    border-top: 5px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.footer-col p, .footer-col ul {
    font-size: 0.9em;
    color: #c0c0c0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.8em;
    color: #888;
}

/* Policy and Contact specific styles (using previously defined styles) */
.page-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    color: var(--light-color);
    font-size: 3.2em;
    text-align: center;
}

.policy-content, .contact-details {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-top: 30px;
}

.consent-box {
    background-color: #f0f8ff; /* Light Blue tint */
    color: var(--primary-color);
    padding: 25px;
    border-left: 5px solid var(--secondary-color);
    border-radius: 5px;
    margin: 30px 0;
}

.consent-box p {
    color: var(--text-color);
}

.consent-box a {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Contact Page Styling */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 50px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 119, 182, 0.3);
}

.consent-checkbox {
    margin-top: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 12px;
    min-width: 20px;
    min-height: 20px;
    accent-color: var(--secondary-color);
}

/* Disabled button style */
#submitBtn.disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.05em;
    line-height: 1.5;
}

.contact-info strong {
    min-width: 90px;
    display: inline-block;
    color: var(--primary-color);
}

.map-container {
    height: 350px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    margin-top: 30px;
    overflow: hidden;
}

/* --- Responsive Design (Mobile View) --- */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar ul li {
        margin: 5px 0;
    }

    .hero {
        height: 400px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}