/* ============================================
   World Watsu Week - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #1BA0C8;
    --color-secondary: #7AC143;
    --color-navy: #0F1B3D;
    --color-orange: #FF8C00;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-light-bg: #F5F7FA;
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 19px;
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

sup {
    font-size: 0.6em;
    vertical-align: super;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .btn {
        padding: 12px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Wave Divider */
.wave-divider {
    width: 250px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 12'%3E%3Cpath d='M0,6 Q12.5,2 25,6 T50,6 T75,6 T100,6 T125,6 T150,6 T175,6 T200,6 T225,6 T250,6' stroke='%231BA0C8' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    margin: 15px 0 30px;
    position: relative;
}

.wave-divider::before,
.wave-divider::after {
    display: none;
}

.wave-divider::before {
    left: 0;
}

.wave-divider::after {
    right: 0;
    background-color: var(--color-secondary);
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header:not(.scrolled) .main-nav a {
    color: var(--color-white);
}

.site-header:not(.scrolled) .main-nav a:hover {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .site-header {
        background-color: rgba(255, 255, 255, 0.98) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    .site-header .logo img {
        filter: brightness(1);
    }
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.logo img {
    height: 90px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 70px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
        width: auto;
    }
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 19px;
    position: relative;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .main-nav a {
        font-size: 16px;
        padding-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .main-nav a {
        font-size: 15px;
        padding-bottom: 6px;
    }
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 6'%3E%3Cpath d='M0,3 Q10,0 20,3 T40,3' stroke='%231BA0C8' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 40px 6px;
    background-position: 0 0;
    width: 0;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-primary);
}

.main-nav a:hover::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-navy);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50vh;
        height: 50vh;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 40vh;
        height: 40vh;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.hero-section:hover .slider-arrow {
    opacity: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 550px;
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 50vh;
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 40vh;
        height: 40vh;
        max-height: 40vh;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    min-height: 450px;
}

@media (max-width: 768px) {
    .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        min-height: 40vh;
    }
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover !important;
    background-position: center !important;
    transform: scale(1);
    z-index: 0;
    animation: slowZoom 10s ease-in-out infinite alternate;
}

@media (max-width: 480px) {
    .hero-slide::after {
        display: none;
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 27, 61, 0.6), rgba(27, 160, 200, 0.4));
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

@media (max-width: 480px) {
    .hero-content {
        padding: 15px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 29px;
    color: var(--color-orange);
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.hero-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 35px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        margin-bottom: 18px;
        line-height: 1.3;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    border: none;
    font-size: 24px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    border-radius: 50%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
        display: none;
    }
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.15);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* ============================================
   Event Info Section
   ============================================ */
.event-info-section {
    padding: 100px 0;
    background-color: var(--color-light-bg);
}

@media (max-width: 768px) {
    .event-info-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .event-info-section {
        padding: 40px 0;
    }
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.event-poster img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.event-date {
    color: var(--color-orange);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .event-date {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .event-date {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

.event-details h2 {
    font-size: 42px;
    color: var(--color-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .event-details h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .event-details h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

.event-highlights {
    margin-top: 30px;
}

.event-highlights li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .event-highlights li {
        padding-left: 25px;
        margin-bottom: 16px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .event-highlights li {
        padding-left: 22px;
        margin-bottom: 12px;
        font-size: 14px;
    }
}

.event-highlights li::before {
    content: '~';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    font-size: 18px;
    color: var(--color-primary);
    font-weight: bold;
    line-height: 1;
}

/* ============================================
   History Section
   ============================================ */
.history-section {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .history-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 40px 0;
    }
}

.history-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.history-text p {
    font-size: 19px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .history-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .history-text p {
        font-size: 14px;
        line-height: 1.6;
    }
}

.history-logo img {
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.covid-content {
    margin-top: 40px;
}

.covid-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .covid-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .covid-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}

.highlight-green {
    color: var(--color-secondary);
    font-weight: 600;
}


/* ============================================
   What is Watsu Section
   ============================================ */
.what-is-watsu-section {
    padding: 100px 0;
    background-color: var(--color-light-bg);
    text-align: center;
}

@media (max-width: 768px) {
    .what-is-watsu-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .what-is-watsu-section {
        padding: 40px 0;
    }
}

.section-subtitle {
    color: var(--color-orange);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 6px;
    }
}

.what-is-watsu-section h2 {
    font-size: 42px;
    color: var(--color-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .what-is-watsu-section h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .what-is-watsu-section h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

.what-is-watsu-section .wave-divider {
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .video-container {
        margin: 30px auto 0;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .video-container {
        margin: 20px auto 0;
        border-radius: 4px;
    }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Where to Join Section
   ============================================ */
.where-to-join-section {
    padding: 100px 0;
    background-color: var(--color-white);
    text-align: center;
}

@media (max-width: 768px) {
    .where-to-join-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .where-to-join-section {
        padding: 40px 0;
    }
}

.where-to-join-section h2 {
    font-size: 42px;
    color: var(--color-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .where-to-join-section h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .where-to-join-section h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

.where-to-join-section .wave-divider {
    margin-left: auto;
    margin-right: auto;
}

.join-description {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .join-description {
        margin: 20px auto 0;
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .join-description {
        margin: 15px auto 0;
        font-size: 14px;
        line-height: 1.5;
    }
}

.join-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 24px;
    margin: 10px auto 35px;
    justify-content: center;
}

@media (max-width: 768px) {
    .join-tiles {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 18px;
        margin: 10px auto 25px;
    }
}

@media (max-width: 480px) {
    .join-tiles {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
        margin: 10px auto 20px;
    }
}

.join-tile {
    background: var(--color-white);
    border: 1px solid rgba(27, 160, 200, 0.2);
    border-radius: 12px;
    padding: 18px 16px 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: var(--transition);
    width: 100%;
    max-width: 260px;
}

@media (max-width: 768px) {
    .join-tile {
        padding: 14px 12px 16px;
        max-width: 100%;
        border-radius: 10px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .join-tile {
        padding: 10px 10px 12px;
        max-width: 100%;
        border-radius: 8px;
        gap: 8px;
    }
}

.join-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 160, 200, 0.5);
}

.join-tile-flag {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--color-light-bg);
    overflow: hidden;
}

@media (max-width: 768px) {
    .join-tile-flag {
        width: 100px;
        height: 65px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .join-tile-flag {
        width: 80px;
        height: 52px;
        border-radius: 5px;
    }
}

.join-tile-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-tile-body h3 {
    font-size: 18px;
    color: var(--color-navy);
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .join-tile-body h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .join-tile-body h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }
}

.join-tile-org {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .join-tile-org {
        font-size: 13px;
        margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    .join-tile-org {
        font-size: 12px;
        margin-bottom: 2px;
    }
}

.join-tile-email {
    font-size: 14px;
    color: var(--color-text-light);
    word-break: break-word;
}

@media (max-width: 768px) {
    .join-tile-email {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .join-tile-email {
        font-size: 11px;
    }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 60px 0 30px;
    position: relative;
    margin-top: auto;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .footer-logo {
        max-width: 200px;
        width: 100%;
        height: auto;
        margin: 0 auto 16px;
        display: block;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 220px;
        margin: 0 auto 14px;
    }

    .footer-content {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--color-primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-column p a {
    color: var(--color-primary);
}

.footer-column p a:hover {
    color: var(--color-white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--color-orange);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--color-orange);
    transform: translateY(-3px);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .event-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle span {
        background-color: var(--color-navy);
    }
    
    .main-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        padding: 20px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav a {
        color: var(--color-navy) !important;
        font-weight: 600;
    }
    
    .main-nav a::before {
        display: none;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-section {
        margin-top: 0;
        padding-top: 90px;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .event-details h2,
    .what-is-watsu-section h2,
    .where-to-join-section h2 {
        font-size: 32px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .event-details h2,
    .what-is-watsu-section h2,
    .where-to-join-section h2 {
        font-size: 28px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

/* ============================================
   Page Title Section
   ============================================ */
.page-title-section {
    background-color: var(--color-light-bg);
    padding: 120px 0 60px;
    margin-top: 90px;
    text-align: center;
}

@media (max-width: 768px) {
    .page-title-section {
        padding: 80px 0 40px;
        margin-top: 90px;
    }
}

@media (max-width: 480px) {
    .page-title-section {
        padding: 60px 0 30px;
        margin-top: 90px;
    }
}

.page-title-section h1 {
    font-size: 48px;
    color: var(--color-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-title-section h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .page-title-section h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
    padding: 80px 0;
    background-color: var(--color-white);
    margin-top: 90px;
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 40px 0;
    }
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

@media (max-width: 768px) {
    .team-members {
        gap: 60px;
    }
}

@media (max-width: 480px) {
    .team-members {
        gap: 40px;
    }
}

.team-member {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .team-member {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .team-member {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.team-member:nth-child(even) {
    direction: rtl;
}

.team-member:nth-child(even) > * {
    direction: ltr;
}

.member-content h2 {
    font-size: 38px;
    color: var(--color-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .member-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .member-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

.member-info {
    margin: 25px 0;
}

.member-info .info-label {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: lowercase;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .member-info .info-label {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .member-info .info-label {
        font-size: 11px;
        margin-bottom: 4px;
    }
}

.member-info p {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .member-info p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .member-info p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 3px;
    }
}

.member-info a {
    color: var(--color-primary);
    transition: var(--transition);
}

.member-info a:hover {
    color: var(--color-navy);
    text-decoration: underline;
}

.member-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 27, 61, 0.18);
    background: transparent;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
}

@media (max-width: 768px) {
    .member-image img {
        max-width: 280px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .member-image img {
        max-width: 220px;
        border-radius: 4px;
    }
}

/* ============================================
   Press Page
   ============================================ */
.press-hero {
    padding: 110px 0 60px;
    background-color: var(--color-light-bg);
}

@media (max-width: 768px) {
    .press-hero {
        padding: 80px 0 40px;
    }
}

@media (max-width: 480px) {
    .press-hero {
        padding: 60px 0 30px;
    }
}

.press-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .press-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .press-hero-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.press-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.press-date {
    color: var(--color-orange);
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .press-date {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .press-date {
        font-size: 14px;
        margin-bottom: 6px;
    }
}

.press-text h2 {
    font-size: 38px;
    color: var(--color-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .press-text h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .press-text h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }
}

.press-text p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .press-text p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .press-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}

.press-dark {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 70px 0 90px;
}

@media (max-width: 768px) {
    .press-dark {
        padding: 50px 0 60px;
    }
}

@media (max-width: 480px) {
    .press-dark {
        padding: 40px 0 50px;
    }
}

.press-dark .press-longtext p {
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .press-dark .press-longtext p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .press-dark .press-longtext p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}

.press-scallop-divider {
    height: 36px;
    background-color: var(--color-navy);
    position: relative;
}

.press-scallop-divider::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 36px;
    background: radial-gradient(circle at 18px 0, transparent 17px, #ffffff 18px) repeat-x;
    background-size: 36px 36px;
}

.press-downloads {
    background-color: var(--color-white);
    padding: 80px 0 90px;
    text-align: center;
}

@media (max-width: 768px) {
    .press-downloads {
        padding: 60px 0 70px;
    }
}

@media (max-width: 480px) {
    .press-downloads {
        padding: 40px 0 50px;
    }
}

.press-downloads h2 {
    font-size: 34px;
    color: var(--color-navy);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .press-downloads h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .press-downloads h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }
}

.press-downloads .wave-divider {
    margin-left: auto;
    margin-right: auto;
}

.press-buttons {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .press-buttons {
        margin-top: 20px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .press-buttons {
        margin-top: 15px;
        gap: 8px;
        flex-direction: column;
    }
}

/* ============================================
   Rules Page
   ============================================ */
.rules-section {
    padding: 120px 0 90px;
    background-color: var(--color-light-bg);
    text-align: center;
    flex: 1;
}

@media (max-width: 768px) {
    .rules-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 480px) {
    .rules-section {
        padding: 60px 0 40px;
    }
}

.rules-section h1 {
    font-size: 44px;
    color: var(--color-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .rules-section h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .rules-section h1 {
        font-size: 24px;
        margin-bottom: 6px;
    }
}

.rules-section .wave-divider {
    margin-left: auto;
    margin-right: auto;
}

.rules-text {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: left;
    color: #6c757d;
    line-height: 1.9;
    font-size: 20px;
}

@media (max-width: 768px) {
    .rules-text {
        margin: 20px auto 0;
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .rules-text {
        margin: 15px auto 0;
        font-size: 14px;
        line-height: 1.6;
    }
}

.rules-text p {
    margin-bottom: 26px;
}

@media (max-width: 768px) {
    .rules-text p {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .rules-text p {
        margin-bottom: 16px;
    }
}


/* ============================================
   Gallery Page Styles
   ============================================ */

.page-intro {
    background-color: var(--color-light-bg);
    padding: 60px 0 60px;
    margin-top: 90px;
    text-align: center;
}

@media (max-width: 768px) {
    .page-intro {
        padding: 50px 0 50px;
    }
}

@media (max-width: 480px) {
    .page-intro {
        padding: 40px 0 40px;
    }
}

.page-intro .breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.page-intro .breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
}

.page-intro .breadcrumb a:hover {
    text-decoration: underline;
}

.page-intro .separator {
    margin: 0 10px;
    color: var(--color-orange);
}

.page-intro .current {
    color: var(--color-text);
}

.page-intro h1 {
    font-size: 48px;
    color: var(--color-navy);
    margin: 0;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-intro h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-intro h1 {
        font-size: 28px;
    }
}

.gallery-section {
    padding: 80px 0 100px;
    background: var(--color-white);
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0 80px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0 60px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }
}

.gallery-tile {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-tile-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: var(--color-light-bg);
}

.gallery-tile-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-tile:hover .gallery-tile-image img {
    transform: scale(1.1);
}

.gallery-tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 160, 200, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-tile:hover .gallery-tile-overlay {
    opacity: 1;
}

.gallery-tile-icon {
    color: var(--color-white);
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-tile:hover .gallery-tile-icon {
    transform: scale(1);
}

.gallery-tile-year {
    padding: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-navy);
    background: var(--color-white);
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-tile-year {
        padding: 15px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .gallery-tile-year {
        padding: 12px;
        font-size: 18px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 27, 61, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    z-index: 10001;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        max-height: 95vh;
        padding: 30px 20px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        padding: 20px 15px;
        border-radius: 0;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-navy);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10002;
}

@media (max-width: 768px) {
    .lightbox-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .lightbox-close {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }
}

.lightbox-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg);
}

.lightbox-title {
    font-size: 36px;
    color: var(--color-navy);
    margin-bottom: 40px;
    text-align: center;
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
    .lightbox-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .lightbox-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

.lightbox-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .lightbox-gallery {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .lightbox-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
}

.lightbox-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .lightbox-gallery img {
        height: 200px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .lightbox-gallery img {
        height: 180px;
        border-radius: 4px;
    }
}

.lightbox-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Gallery Responsive - Lightbox Navigation */
.lightbox-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        gap: 15px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        gap: 10px;
        margin-top: 10px;
    }
}

.lightbox-prev,
.lightbox-next {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-navy);
    transform: scale(1.1);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-prev:disabled:hover,
.lightbox-next:disabled:hover {
    transform: none;
}


