/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/style.css ***!
  \*****************************************************************/
:root {
    --bg-color: #FDFFF3;
    --fg-color: #a12051;
    --text-color: #333;
    --font-heading: 'Clash Grotesk', sans-serif;
    --font-body: sans-serif;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: var(--nav-height);
    /* Prevent content from hiding behind fixed nav */
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--fg-color);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link img {
    height: 40px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--fg-color);
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--fg-color);
    transition: 0.3s;
}

/* Hero Section */
#hero {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(253, 255, 243, 1) 0%, rgba(255, 240, 245, 1) 100%);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #666;
    padding: 0 60px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--fg-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(161, 32, 81, 0.3);
}

/* Sections General */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}

/* Timetable */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.day-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(161, 32, 81, 0.1);
    transition: transform 0.3s;
}

.day-card:hover {
    transform: translateY(-5px);
}

.day-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.day-card p {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Locations */
.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.location-item {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--fg-color);
}

.location-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Pricing */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #eee;
}

.price-card.featured {
    border: 2px solid var(--fg-color);
    transform: scale(1.05);
    z-index: 1;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--fg-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.price-card button {
    margin-top: 30px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--fg-color);
    color: var(--fg-color);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.price-card.featured button,
.price-card button:hover {
    background: var(--fg-color);
    color: white;
}

/* Footer */
footer {
    background-color: var(--fg-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}


.location-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.footer-qr {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        text-align: center;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .price-card.featured {
        transform: scale(1);
    }

    section {
        padding: 40px 0;
    }

    .hero-content p {
        padding: 0 20px;
    }
}
