/* Trendy Travelers Website Styles */
/* Color scheme from the app */

:root {
    /* Primary Colors */
    --color-primary: #4AACD0;
    /* Fountain Blue */
    --color-primary-dark: #300151;

    /* Background Colors */
    --color-onyx: #111012;
    --color-rangoon-green: #171619;
    --color-dark-jungle-green: #211F24;
    --color-thunder: #312E36;

    /* Grey Scale */
    --color-mid-grey: #625A6D;
    --color-amethyst-smoke: #9B91AA;
    --color-hawkes-blue: #E5DBF6;

    /* Accent Colors */
    --color-forest-green: #459750;
    --color-flame-pea: #E14F33;
    --color-turmeric: #C9C243;

    /* Application Colors */
    --color-main-bg: var(--color-onyx);
    --color-overlay-bg: var(--color-dark-jungle-green);
    --color-menu-bg: var(--color-rangoon-green);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--color-main-bg) 0%, var(--color-rangoon-green) 100%);
    color: var(--color-hawkes-blue);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* Header */
header {
    background-color: rgba(33, 31, 36, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--color-hawkes-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

nav a:hover {
    color: var(--color-primary);
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-section {
    text-align: center;
    max-width: 800px;
    padding: 3rem 2rem;
    background: rgba(33, 31, 36, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(74, 172, 208, 0.2);
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

h1 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    color: var(--color-amethyst-smoke);
    margin-bottom: 2rem;
    font-weight: 300;
}

.description {
    font-size: 1.2rem;
    color: var(--color-hawkes-blue);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3a8ca5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 172, 208, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 172, 208, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(74, 172, 208, 0.2);
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--color-amethyst-smoke);
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: rgba(23, 22, 25, 0.9);
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--color-amethyst-smoke);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-amethyst-smoke);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-mid-grey);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .cta-container {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    .logo {
        height: 40px;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .hero-logo {
        max-width: 200px;
    }
}