/* Global Styles */
:root {
    /* Brand Guide Colors */
    --primary-color: #009de1;
    /* Cyan/Blue */
    --secondary-color: #e62d64;
    /* Pink/Red */
    --accent-color: #ffeb00;
    /* Yellow */
    --black: #000000;
    --white: #ffffff;

    --text-color: var(--black);
    --light-bg: #f5fcfd;
    /* Very light tint of blue */
    --border-radius: 8px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.title-font {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    /* More modern, pill shape */
    font-family: 'Teko', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--secondary-color);
    /* Pink pop */
    color: var(--white);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(230, 45, 100, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.6rem;
    padding: 16px 40px;
}

/* Utilities */
.highlight {
    color: var(--secondary-color);
}

.sm-hidden {
    display: none;
}

@media (min-width: 768px) {
    .sm-hidden {
        display: inline-block;
    }

    .lg-hidden {
        display: none;
    }
}

/* Header */
header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul li a {
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    color: var(--black);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #e0f2ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 235, 0, 0.1);
    /* Yellow accent */
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text .tagline {
    font-family: 'Teko', sans-serif;
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--black);
    padding: 5px 15px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    transform: skew(-5deg);
    /* Dynamic angle */
}

.hero-text h1 {
    font-family: 'Anton', sans-serif;
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-placeholder-graphic {
    background: linear-gradient(45deg, var(--primary-color), #29b6f6);
    height: 450px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 20px 20px 0px var(--accent-color);
    /* Pop art style shadow */
    position: relative;
}

.hero-placeholder-graphic i {
    font-size: 8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.3rem;
    font-family: 'Teko', sans-serif;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-card {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-card:hover::after {
    transform: scaleX(1);
}

.about-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--black);
}

.about-card p {
    color: #666;
}

/* Details Section */
.details {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

@media (min-width: 600px) {
    .details-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .details-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.detail-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.detail-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    opacity: 0.9;
}

.highlight-text {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 500;
}

/* Route Section */
.route {
    padding: 100px 0;
    background-color: var(--white);
}

.map-container {
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--secondary-color);
    /* Pink border */
}

.route-map {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: var(--accent-color);
    /* Yellow background */
    text-align: center;
    color: var(--black);
    position: relative;
}

.cta-banner h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-banner .btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    font-size: 1.8rem;
}

.cta-banner .btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--white);
    color: var(--black);
    padding-top: 60px;
    border-top: 5px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

footer h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

footer ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

footer ul li a:hover {
    color: var(--secondary-color);
}

footer p {
    margin-bottom: 10px;
}

footer i {
    margin-right: 10px;
    width: 20px;
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 0;
}