/* CSS Custom Properties - Btw Courtiplay is awesome and you should get it */
:root {
    --primary-color: #1349d3;
    --primary-dark: #0d3ba0;
    --primary-light: #1e5ae8;
    --secondary-color: #d4ff78;
    --accent-color: #d5e715;
    --dark-bg: #0a0a0a;
    --dark-text: #1a1a1a;
    --light-bg: #ffffff;
    --light-text: #ffffff;
    --gray-text: #666666;
    --gray-light: #e8e8e8;
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-hover: rgba(0, 0, 0, 0.25);
    --shadow-bold: 0 4px 20px rgba(19, 73, 211, 0.2);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation - Mobile First */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 95px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.nav-logo.scrolled {
    height: 60px;
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100vh;
    padding: 5rem 0 2rem;
    box-shadow: none;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.5rem;
    list-style: none;
    z-index: 999;
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-menu.active ~ .mobile-menu-toggle {
    position: fixed;
    right: 1rem;
    top: 1.5rem;
    z-index: 1001;
}

.nav-link {
    display: block;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    padding: 1.25rem 2rem;
    transition: var(--transition);
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.nav-link:not(.btn-nav)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:not(.btn-nav):hover::before,
.nav-link:not(.btn-nav):active::before {
    width: 4px;
}

.nav-link:not(.btn-nav):hover {
    color: var(--primary-color);
    background: transparent;
    padding-left: 2.5rem;
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 1rem 2rem;
    font-weight: 700;
    border: none;
    margin: 1.5rem 2rem 0;
    display: block;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(19, 73, 211, 0.3);
    transition: var(--transition);
}

.btn-nav::before {
    display: none;
}

.btn-nav:hover {
    background: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 73, 211, 0.4);
    padding-left: 2rem;
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Section - Mobile First */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1rem 3rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('background_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 2rem 1rem;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    line-height: 1.05;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 3.5vw, 1.85rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    letter-spacing: 0.3px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.75;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: white;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Buttons - Clean & Modern */
.btn {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--dark-text);
    box-shadow: 0 6px 20px rgba(213, 231, 21, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: #c4d013;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(213, 231, 21, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.75rem;
    color: var(--gray-text);
    font-weight: 400;
}

.about-text .lead {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.7;
    letter-spacing: -0.3px;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: left;
    border: 1px solid #f0f0f0;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-number {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.feature-description {
    color: var(--gray-text);
    line-height: 1.7;
    font-weight: 400;
    font-size: 0.95rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

/* How to Book Section */
.how-to-book {
    background: #fafafa;
}

.booking-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 0;
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.step-description {
    color: var(--gray-text);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.step-content .btn {
    margin-top: 0.5rem;
}

.store-badges {
    display: flex;
    gap: 1rem;
    margin: 1.5rem auto 2.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
}

.store-badge {
    display: inline-block;
    transition: var(--transition);
}

.store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-badge img {
    height: 42px;
    width: auto;
    display: block;
}

/* Mobile - Smaller and Centered Store Badges */
@media (max-width: 767px) {
    .store-badges {
        justify-content: center;
        margin: 1.5rem auto 2rem;
    }
    
    .store-badge img {
        height: 30px;
    }
}

/* What We Offer Section */
.what-we-offer {
    position: relative;
    background: var(--dark-bg);
    color: white;
    overflow: hidden;
}

.what-we-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('background_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.what-we-offer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.what-we-offer .container {
    position: relative;
    z-index: 2;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.offer-header {
    text-align: left;
}

.offer-decorator {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 3px;
}

.offer-main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.offer-description-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
}

.offer-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: start;
}

.amenity-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--secondary-color);
    background: transparent;
    transition: var(--transition);
    cursor: default;
    border-radius: 50px;
}

.amenity-tag:hover {
    background: rgba(212, 255, 120, 0.1);
    border-color: var(--accent-color);
}

.amenity-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.amenity-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Location Section */
.location {
    background: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    max-width: 700px;
    margin: 0 auto;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.location-item {
    padding: 2rem;
    background: white;
    border: 1px solid #f0f0f0;
    border-left: 2px solid var(--primary-color);
    transition: var(--transition);
}

.location-item:hover {
    border-left-color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.location-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.location-item p {
    color: var(--gray-text);
    line-height: 1.7;
    font-weight: 400;
}

.location-map {
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
    min-height: 300px;
    border: 1px solid var(--gray-light);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.map-placeholder p:first-child {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p:nth-child(2) {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .title-underline {
    background: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 0;
    align-items: start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-details h3 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-details p {
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
}

.contact-details a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-cta {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.contact-cta p {
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.footer-brand p {
    opacity: 0.7;
    font-weight: 400;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.7;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Tablet and Up */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .navbar .container {
        padding: 1.125rem 2rem;
    }

    .nav-brand {
        display: flex;
        align-items: center;
    }
    
    .nav-logo {
        height: 105px;
    }
    
    .nav-logo.scrolled {
        height: 60px;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        border-top: none;
        gap: 0;
        align-items: center;
        left: auto;
        overflow: visible;
    }
    
    .menu-backdrop {
        display: none;
    }

    .nav-link {
        display: inline-block;
        padding: 0.5rem 1rem;
        border: none;
        border-bottom: none;
        font-size: 0.9rem;
        font-weight: 600;
        color: white;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .nav-link:not(.btn-nav)::before {
        display: none;
    }

    .nav-link:not(.btn-nav):hover {
        color: var(--secondary-color);
        background: transparent;
        padding-left: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .btn-nav {
        margin: 0;
        padding: 0.625rem 1.5rem;
        display: inline-block;
        text-align: center;
    }

    .btn-nav:hover {
        background: var(--primary-dark) !important;
        color: white !important;
        transform: translateY(-1px);
        padding-left: 1.5rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero {
        padding: 6rem 2rem 2rem;
        min-height: 100vh;
    }

    .hero-content {
        padding: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .offer-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
    
    .offer-amenities {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-steps {
        gap: 4rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 700px;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-links {
        justify-content: flex-end;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero {
        padding-top: 80px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-amenities {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .booking-step {
        gap: 3rem;
    }

    .about-text p {
        font-size: 1.05rem;
    }

    .about-text .lead {
        font-size: 1.35rem;
    }

    .feature-card {
        padding: 2.25rem;
    }

    .contact-cta {
        padding: 2.5rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
