/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #0077b6;
    --secondary-color: #ffb703;
    --text-color: #333;
    --light-text: #fff;
    --card-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    min-height: 100vh; /* changed from height: 100vh to allow scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Premium Travel Background */
    background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    /* overflow: hidden; removed to allow scrolling */
    overflow-y: auto;
    position: relative;
    padding: 20px 0; /* Add some padding to body to prevent content touching edges on small screens */
}

/* Dark Overlay for readability */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.4); /* Slight blue tint overlay */
    z-index: 0;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 550px;
    width: 90%;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.container:hover .logo {
    transform: scale(1.05);
}

h1 {
    font-size: 2.8rem;
    color: #003049;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 500;
}

.content-box {
    text-align: left;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 1rem;
    border-left: 5px solid var(--secondary-color);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.contact-info {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #222;
    line-height: 1.5;
}

.contact-info ion-icon {
    color: var(--primary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info a {
    color: #005f73;
    text-decoration: none;
    font-weight: 600;
    transition: letter-spacing 0.2s, color 0.2s;
}

.contact-info a:hover {
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.footer-text {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.5);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 2rem;
        width: 95%;
    }
    
    h1 {
        font-size: 2.2rem;
    }

    .logo {
        max-width: 140px;
    }
}

@media (max-height: 800px) {
    .container {
        padding: 2rem;
        margin: 20px 0; /* Ensure margin when scrolling */
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        margin-bottom: 1.5rem;
    }

    .footer-text {
        margin-top: 1.5rem;
    }
}