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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

/* Hero Section (Default) */
.hero {
    background: linear-gradient(135deg, #090E15 0%, #012252 100%);
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 41, 0.8);
    width: 100%;
}

/* Shorter Hero for Subpages */
.hero.shorter-hero {
    height: 50vh;
    padding-top: 0;
}

.shorter-hero .hero-content {
    padding-top: 80px;
}

.hero-content {
    z-index: 1;
    padding-top: 120px;
}

.hero-logo {
    width: 600px;
    max-width: 600px;
    max-height: 600px;
    object-fit: contain;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

.cta-button {
    background: #1A355F;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
    background: #2E4A8A;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 20%;
    right: 10%;
    opacity: 0.3;
}

.paddle {
    animation: spin 10s infinite linear;
    fill: #1A355F;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Navigation */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #090E15;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-logo-img {
    width: 150px;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-links a {
    color: #B3CDE0;
    margin: 0 20px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: color 0.3s, transform 0.2s;
}

.nav-links a:hover {
    color: #2E4A8A;
    transform: scale(1.05);
}

.book-button {
    background: #1A355F;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.book-button:hover {
    background: #2E4A8A;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(46, 74, 138, 0.5);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 60px 20px;
    background: #fff;
}

.feature-card {
    background: #012252;
    color: white;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
}

/* Booking Section */
.booking {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.booking h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #012252;
    margin-bottom: 20px;
}

.booking p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

/* Vision Section */
.vision {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.vision-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    color: #1A355F;
    margin-bottom: 10px;
}

.vision-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    color: #666;
}

/* Programs & Memberships Content */
.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.services-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #012252;
    margin-bottom: 20px;
}

.services-content > p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    background-color: #fff;
    border: 2px solid #1A355F;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    color: #012252;
    margin: 0 0 10px;
}

.service-item ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 15px;
    text-align: left;
}

.service-item ul li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
}

.membership-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.monthly-label, .annual-label {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin: 0;
}

.monthly-label {
    margin-top: 10px;
    margin-bottom: 5px;
}

.annual-label {
    margin-top: 15px;
    margin-bottom: 5px;
}

.toggle-details {
    background-color: #1A355F;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    width: auto;
}

.toggle-details:hover {
    background-color: #2E4A8A;
    transform: scale(1.05);
}

.toggle-details.annual {
    background-color: #2E4A8A;
}

.toggle-details.annual:hover {
    background-color: #1A355F;
}

.cta {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    color: #666;
    margin-top: 20px;
}

/* About & Contact Content */
.about-contact-content {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    margin: 40px 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.about-contact-content .about-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #E6ECF5;
    padding: 30px;
    border-radius: 10px;
}

.about-contact-content .about-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #012252;
    margin-bottom: 15px;
}

.about-contact-content .about-intro p {
    font-size: 18px;
    color: #333;
}

.about-contact-content .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 40px;
}

.about-contact-content .contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: #E6ECF5;
    padding: 30px;
    border-radius: 8px;
}

.about-contact-content .contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #012252;
    margin-bottom: 20px;
}

.about-contact-content .contact-info p {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.about-contact-content .contact-info a {
    color: #1A355F;
    text-decoration: none;
    transition: color 0.3s;
}

.about-contact-content .contact-info a:hover {
    color: #2E4A8A;
}

.about-contact-content .contact-info .cta-button {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
}

.about-contact-content .contact-info .cta-button:hover {
    background: #2E4A8A;
    transform: scale(1.1);
    color: #fff;
}

/* Footer */
footer {
    background: #090E15;
    color: white;
    padding: 30px;
    text-align: center;
}

.footer-logo {
    width: 120px;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.socials a {
    color: #1A355F;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
}

.socials a:hover {
    color: #2E4A8A;
}

/* Hamburger Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #B3CDE0;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive (Mobile Only) */
@media (max-width: 768px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .hero-logo {
        width: 350px;
        max-width: 350px;
        max-height: 350px;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    .hero-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    .nav-logo {
        flex-grow: 0;
    }
    .nav-logo-img {
        width: 70px;
        max-width: 70px;
        max-height: 70px;
    }
    .hamburger {
        display: block;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-menu {
        max-height: 0;
        overflow: hidden;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #090E15;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transition: max-height 0.3s ease;
    }
    .nav-menu.open {
        max-height: 300px;
    }
    .nav-links {
        flex-direction: column;
        margin: 0;
        padding: 20px 0;
    }
    .nav-links a,
    .book-button {
        margin: 10px 0;
        font-size: 20px;
        width: 100%;
        text-align: center;
    }
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .hero-content {
        padding-top: 100px;
    }
    .footer-logo {
        width: 90px;
        max-width: 90px;
        max-height: 90px;
    }
    .features {
        grid-template-columns: 1fr;
        padding: 40px 10px;
    }
    .feature-card {
        margin-bottom: 20px;
        width: 100%;
    }
    .service-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .service-item {
        margin-bottom: 20px;
        width: 100%;
    }
    .membership-options {
        padding: 0 10px;
    }
    .toggle-details {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .about-contact-content {
        padding: 30px 10px;
        margin: 20px 10px 0;
    }
    .about-contact-content .features {
        grid-template-columns: 1fr;
    }
    .about-intro {
        padding: 20px;
    }
    .about-intro h2 {
        font-size: 24px;
    }
    .about-intro p {
        font-size: 16px;
    }
    .contact-info {
        padding: 20px;
    }
    .contact-info h2 {
        font-size: 24px;
    }
    .contact-info p {
        font-size: 16px;
    }
}

/* Flavor Text in Hero */
.flavor-text {
    font-size: 20px;
    margin-bottom: 20px;
    font-style: italic;
    color: #B3CDE0;
}

@media (max-width: 768px) {
    .flavor-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

/* Founding Member Styling */
.founding-member {
    background-color: #E6ECF5;
    border: 2px solid #1A355F;
    position: relative;
}

.founding-member h3 {
    color: #1A355F;
}

.founding-member .summary {
    font-weight: bold;
    color: #012252;
}

.availability {
    font-size: 14px;
    color: #2E4A8A;
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 768px) {
    .availability {
        font-size: 12px;
    }
}