/* LDYHO Website Styles - Mobile-First Approach */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    font-size: 16px; /* Base font size for mobile */
}

/* Main Container - Mobile First */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

/* Typography - Mobile First */
h1, h2, h3, h4 {
    font-family: 'Alice', serif;
    color: var(--turquoise-dark);
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem; /* Mobile: 28px */
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem; /* Mobile: 20px */
    margin-bottom: 1rem;
}

/* Global paragraph link styling */
p a,
.section-content a {
    color: var(--turquoise);
    text-decoration: underline;
    font-weight: bold;
}

p a:hover,
.section-content a:hover {
    color: var(--turquoise-dark);
}

/* Western Theme Colors */
:root {
    --turquoise: #20afb8;
    --turquoise-dark: #1a8f96;
    --turquoise-light: #4dc9d2;
    --text-dark: #2c3e50;
    --text-light: #f8f8f8;
    --background-light: #fafafa;
    --hover-light: #f5f5f5;
}

/* Header Styles - Mobile First */
.western-header {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(32, 175, 184, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.home-button {
    flex-shrink: 0;
}

.home-button a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-button a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.home-logo {
    height: auto;
    max-height: 40px; /* Mobile: smaller logo */
    width: auto;
    max-width: 60px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.home-logo:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Mobile Menu Button - Always visible on mobile */
.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem; /* Mobile: 24px */
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 1001;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.mobile-menu-button:active {
    background-color: rgba(245, 245, 245, 0.2);
    color: var(--hover-light);
    transform: scale(0.95);
}

    .home-button {
        order: 1; /* Home icon first (left) */
        flex-shrink: 0;
    }

    .mobile-menu-button {
        order: 2; /* Hamburger menu second (right) */
        margin-left: auto;
        margin-right: 0;
    }

/* Mobile Navigation Menu */
.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
    box-shadow: 0 2px 10px rgba(32, 175, 184, 0.3);
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    flex-direction: column;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Sub-menu styles for mobile */
.has-submenu {
    position: relative;
}

.main-nav-link {
    position: relative;
}

/* Add dropdown arrow indicator for items with sub-menus */
.has-submenu > .main-nav-link::after {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-submenu.submenu-open > .main-nav-link::after {
    transform: rotate(180deg);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(26, 143, 150, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.submenu.open {
    max-height: 200px; /* Adjust based on content */
    padding: 8px 0;
}

.submenu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    display: block;
    padding: 12px 24px;
    padding-left: 32px; /* Indent sub-menu items */
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent;
}

.submenu a:hover {
    background-color: rgba(255,255,255,0.15);
    padding-left: 40px; /* Extra indent on hover */
    color: var(--turquoise-light);
}

.nav-menu.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    display: block;
    padding: 16px;
    text-align: center;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem; /* Mobile: 16px */
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--hover-light);
    padding-left: 24px;
}

/* Hero Section - Mobile First */
.hero {
    min-height: 100vh; /* Use min-height instead of fixed height */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('resources/herodance.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 80px 0 40px; /* Account for fixed header */
    max-width: 100vw;
    overflow: hidden;
}

.hero-content {
    max-width: 100%;
    padding: 24px 16px;
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-title {
    font-size: 2rem; /* Mobile: 32px */
    margin-bottom: 16px;
    color: var(--text-light);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

h3.hero-subtitle {
    font-size: 1.1865rem !important; /* Mobile: 18.984px (25% smaller) */
    margin-bottom: 24px;
    color: var(--turquoise);
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.hero-word {
    font-family: 'Alice', serif;
    color: var(--text-light);
}

.hero-star {
    color: var(--turquoise);
    font-size: 1.1em;
    margin: 0 0.1rem;
}

/* Touch-friendly CTA Button */
.cta-button {
    background-color: var(--turquoise);
    color: white; /* White text color for better contrast */
    border: none;
    padding: 16px 32px; /* Mobile: larger touch target */
    font-size: 1.125rem; /* Mobile: 18px */
    font-family: 'Alice', serif; /* Same font as h1 for elegant look */
    font-weight: 600;
    border-radius: 8px; /* Mobile: more rounded */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    min-height: 48px; /* Touch-friendly minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline from link styling */
}

.cta-button:hover {
    background-color: var(--hover-light);
    color: var(--turquoise-dark); /* Change text to dark turquoise on hover for contrast with light background */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 245, 245, 0.3);
}

/* Section Styles - Mobile First */
section {
    padding: 48px 0; /* Mobile: less padding */
}

.section-title {
    color: var(--turquoise-dark);
    position: relative;
    margin-bottom: 24px; /* Mobile: less margin */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Mobile: smaller underline */
    height: 3px;
    background-color: var(--turquoise);
}

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

/* About section styling - now using unified content-section */
.about .section-content p {
    font-size: 1rem; /* Mobile: 16px */
    margin-bottom: 16px; /* Mobile: less margin */
    color: var(--text-dark);
    line-height: 1.6;
}

.organizer-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(32, 175, 184, 0.2);
    border-left: 4px solid var(--turquoise);
}

.organizer-section h3 {
    color: var(--turquoise-dark);
    margin-bottom: 12px;
}

.organizer-section p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

/* Organizer Bio Layout */
.organizer-bio {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.organizer-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--turquoise-light);
    box-shadow: 0 4px 15px rgba(32, 175, 184, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organizer-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(32, 175, 184, 0.4);
}

.organizer-text {
    flex: 1;
}

.organizer-text h3 {
    color: var(--turquoise-dark);
    margin-bottom: 12px;
}

.organizer-text p {
    color: var(--text-dark);
}

/* Experience Section - Mobile First */
.experience {
    background-color: var(--text-light);
}

/* Unified Content Section Styling - applies to all subsections */
.content-section,
.experience-section {
    margin-bottom: 32px; /* Mobile: less margin */
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(32, 175, 184, 0.1);
    border-left: 4px solid var(--turquoise-light);
}

/* Content wrapper inside each section */
.section-content {
    max-width: 100%;
    margin: 0 auto;
}

/* Backwards compatibility for connect-section */
.connect-section {
    margin-bottom: 32px; /* Mobile: less margin */
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(32, 175, 184, 0.1);
    border-left: 4px solid var(--turquoise-light);
}

/* Social Media Buttons */
.social-links {
    display: flex;
    gap: 16px; /* Mobile: less gap */
    justify-content: center;
    margin-top: 16px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Mobile: smaller buttons */
    height: 50px;
    border-radius: 50%; /* Circular buttons */
    text-decoration: none;
    font-size: 1.5rem; /* Mobile: 24px */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.social-button.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5); /* Facebook blue gradient */
    color: white;
}

.social-button.instagram {
    background: linear-gradient(135deg, #e4405f, #ffd600); /* Instagram gradient */
    color: white;
}

/* MailerLite Embedded Form Spacing */
.ml-embedded {
    margin-top: 20px; /* Add space above the embedded signup form */
}

.subsection-title {
    color: var(--turquoise-dark);
    font-size: 1.5rem; /* Mobile: 24px */
    margin-bottom: 16px;
    text-align: center;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px; /* Mobile: smaller underline */
    height: 3px;
    background-color: var(--turquoise);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column */
    gap: 16px; /* Mobile: less gap */
    margin-top: 16px;
}

.detail-item {
    text-align: center;
    padding: 16px;
    background: var(--background-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-2px); /* Mobile: smaller hover effect */
}

.detail-item h4 {
    color: var(--turquoise-dark);
    margin-bottom: 8px;
    font-size: 1.125rem; /* Mobile: 18px */
}

.detail-item p {
    color: var(--text-dark);
    font-size: 0.95rem; /* Mobile: 15px */
    line-height: 1.5;
}

/* Styling for the clickable map link */
.map-link {
    font-size: 0.95rem; /* This matches the font size of the surrounding text */
    line-height: 1.5; /* This matches the line height of the surrounding text */
    display: block; /* This makes the link behave like a block, which helps with spacing */
    transition: color 0.3s ease; /* This adds a smooth transition for the hover effect */
}

/* Custom Star Bullets for Details List */
.details-list {
    list-style: none; /* This removes the default bullet points */
    padding-left: 0; /* This removes the default indentation that comes with lists */
    text-align: center; /* The parent .detail-item has center-align, so we center the list too */
    margin-top: 8px; /* This adds some space between the intro paragraph and the list */
    padding-left: 20px; /* Add some padding to align with the text above */
}

.details-list li {
    margin-bottom: 8px; /* This adds space between the list items */
    text-align: center; /* Center the list items including the stars */
    font-size: 1rem; /* Ensure consistent font size with other sections */
}

.details-list li::before {
    content: '★ ';
    color: var(--turquoise);
    font-size: 1em;
    position: static;
    display: inline;
}

.venue-content {
    max-width: 100%;
    margin: 0 auto;
}

/* Venue Grid - contains individual venue items */
.venue-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
}

/* Individual venue container */
.venue-item {
    padding: 20px;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 3px solid var(--turquoise);
}

.venue-text {
    margin-top: 16px;
}

.venue-text p {
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

.instructors-content {
    text-align: center; /* Keep instructor section text centered */
    max-width: 100%; /* Prevent overflow beyond container */
    margin: 0 auto; /* Center within the container */
}

.instructors-content p {
    margin-bottom: 16px; /* Space under intro paragraph */
    color: var(--text-dark); /* Match site text color */
    font-size: 1rem; /* Consistent paragraph size */
    line-height: 1.6; /* Comfortable reading line height */
}

.instructors-grid { /* Use flex to center last row of tiles */
    display: flex; /* Enable flexbox layout */
    flex-wrap: wrap; /* Allow items to wrap onto new lines */
    justify-content: center; /* Center items on each row, including last row */
    gap: 20px; /* Preserve spacing between tiles (mobile baseline) */
    margin-top: 20px; /* Space from preceding paragraph */
}

.instructor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

  .instructor-item:hover {
      transform: translateY(-3px);
  }

.instructor-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--turquoise-light);
    margin-bottom: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.instructor-item:hover .instructor-photo {
    transform: scale(1.05);
    border-color: var(--turquoise);
}

.venue-picture-item-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 100%; /* Full width within venue-item container */
    margin: 0; /* Remove auto centering since it's in a grid */
}

.venue-picture-item-inline:hover {
    transform: translateY(-3px);
}

.venue-picture {
    width: 100%;
    max-width: 100%; /* Full width of container */
    height: 250px; /* Slightly taller for better proportions */
    object-fit: cover;
    border: 3px solid var(--turquoise-light);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.venue-picture-item:hover .venue-picture {
    transform: scale(1.02);
    border-color: var(--turquoise);
}

.venue-picture-item h4 {
    color: var(--turquoise-dark);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Register Section - Mobile First */
.register {
    background-color: var(--background-light);
}

/* Registration section - simplified styling */
.registration-open {
    text-align: center;
}

.registration-open p {
    font-size: 1rem; /* Mobile: 16px - matches other sections */
    margin-bottom: 16px; /* Mobile: matches other sections */
    color: var(--text-dark);
    line-height: 1.6;
}

.coming-soon {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(32, 175, 184, 0.2);
    border: 2px solid var(--turquoise-light);
}

.coming-soon h3 {
    color: var(--turquoise-dark);
    margin-bottom: 12px;
}

.coming-soon p {
    gap: 24px; /* Mobile: less gap */
    text-align: center;
}

/* Volunteer Section - Mobile First */
.volunteer {
    background-color: var(--background-light);
}

/* Connect Section - Mobile First */
.connect {
    background-color: var(--background-light);
}

.volunteer-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Volunteer grid styling - matches details-grid pattern */
.volunteer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column */
    gap: 16px; /* Mobile: less gap */
    margin-top: 16px;
}

.volunteer-tile {
    text-align: left;
    padding: 16px;
    background: var(--background-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.volunteer-tile:hover {
    transform: translateY(-2px); /* Mobile: smaller hover effect */
}

.volunteer-tile h4 {
    color: var(--turquoise-dark);
    margin-bottom: 12px;
    font-size: 1.125rem; /* Mobile: 18px */
}

.volunteer-tile h5 {
    color: var(--turquoise);
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1rem; /* Mobile: 16px */
    font-weight: 600;
}

.volunteer-tile ul {
    list-style: none;
    padding-left: 0;
}

.volunteer-tile li {
    margin-bottom: 6px;
    padding-left: 0;
    position: relative;
}

.volunteer-tile li::before {
    content: '★ ';
    color: var(--turquoise);
    font-size: 0.9em;
    margin-right: 4px;
}

.volunteer-content p {
    font-size: 1rem;
    margin-bottom: 24px; /* Consistent spacing after paragraphs */
    color: var(--text-dark);
    line-height: 1.6;
}

.volunteer-content h3 {
    margin-top: 32px; /* Space above headings */
    margin-bottom: 20px; /* Space below headings */
}

.volunteer-info p {
    font-size: 1.125rem; /* Mobile: 18px */
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.footer-logo {
    order: 1;
}

.footer-logo h3 {
    font-size: 1.5rem; /* Mobile: 24px */
    margin-bottom: 8px;
    color: var(--text-light);
}

.footer-logo p {
    font-size: 0.95rem; /* Mobile: 15px */
    opacity: 0.9;
}

.footer-social {
    order: 2;
}

.footer-social h4 {
    font-size: 1.125rem; /* Mobile: 18px */
    margin-bottom: 12px;
    color: var(--text-light);
}

.social-icons {
    display: flex;
    gap: 16px; /* Mobile: less gap */
    justify-content: center;
}

.social-icons a {
    display: inline-block;
    padding: 8px 12px;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem; /* Mobile: 14px */
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.85rem; /* Mobile: 13.6px */
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.signup-form input {
    flex: 1;
    padding: 16px; /* Mobile: larger touch target */
    border: 2px solid var(--turquoise-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; /* Mobile: 16px */
    min-height: 48px; /* Touch-friendly */
}

.signup-form input:focus {
    outline: none;
    border-color: var(--turquoise);
}

.signup-button {
    background-color: var(--turquoise);
    color: var(--text-dark);
    border: none;
    padding: 16px 24px; /* Mobile: larger touch target */
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px; /* Touch-friendly */
}

.signup-button:hover {
    background-color: var(--hover-light);
}

/* Very small phones - under 360px */
@media (max-width: 359px) {
    .hero-content {
        padding: 20px 16px; /* Maintain adequate side padding */
        border-radius: 12px;
    }

    .hero-title {
        font-size: 1.75rem; /* Very small phones: 28px */
        margin-bottom: 12px;
    }

    h3.hero-subtitle {
        font-size: 0.9375rem !important; /* Very small phones: 15px (25% smaller) */
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 1rem; /* Very small phones: 16px */
        min-height: 44px; /* Slightly smaller touch target but still accessible */
    }
}
@media (min-width: 768px) {
    body {
        font-size: 16px; /* Keep base size */
    }

    .container {
        max-width: 720px; /* Tablet container width */
        padding: 0 24px;
    }

    h2 {
        font-size: 2.25rem; /* Tablet: 36px */
        margin-bottom: 2rem;
    }

    h3 {
        font-size: 1.5rem; /* Tablet: 24px */
        margin-bottom: 1.25rem;
    }

    .western-header {
        padding: 16px 0;
    }

    .nav-container {
        padding: 0 24px;
    }

    .home-logo {
        max-height: 50px; /* Tablet: medium logo */
        max-width: 75px;
    }

    .mobile-menu-button {
        font-size: 1.75rem; /* Tablet: 28px */
    }

    .nav-menu a {
        font-size: 1.1rem; /* Tablet: 17.6px */
        padding: 18px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 32px 24px;
    }

    .hero-title {
        font-size: 2.75rem; /* Tablet: 44px */
        margin-bottom: 20px;
    }

    h3.hero-subtitle {
        font-size: 1.318125rem !important; /* Tablet: 21.09px (25% smaller) */
        margin-bottom: 28px;
        color: var(--turquoise);
    }

    .cta-button {
        padding: 18px 36px;
        font-size: 1.25rem; /* Tablet: 20px */
        border-radius: 10px;
    }

    section {
        padding: 64px 0;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title::after {
        width: 80px;
    }

    .content-section,
    .experience-section {
        margin-bottom: 40px;
        padding: 24px;
    }
    
    .about .section-content p {
        font-size: 1.1rem; /* Tablet: 17.6px */
        margin-bottom: 20px;
    }
    
    .registration-open p {
        font-size: 1.1rem; /* Tablet: 17.6px - matches other sections */
        margin-bottom: 20px; /* Tablet spacing to match other sections */
    }

    .organizer-section {
        padding: 24px;
    }

    /* Organizer Bio - Tablet */
    .organizer-bio {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }

    .organizer-photo {
        width: 180px;
        height: 180px;
        flex-shrink: 0;
    }

    .organizer-text {
        flex: 1;
    }

    /* Volunteer grid - tablet 2 columns */
    .volunteer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .volunteer-tile {
        padding: 20px;
    }
    
    .volunteer-tile h4 {
        font-size: 1.25rem; /* Tablet: 20px */
    }

    .social-links {
        gap: 20px;
        margin-top: 20px;
    }

    .social-button {
        width: 60px; /* Tablet: larger buttons */
        height: 60px;
        font-size: 1.75rem; /* Tablet: 28px */
    }

    /* MailerLite Embedded Form Spacing - Tablet */
    .ml-embedded {
        margin-top: 24px; /* Slightly more space on tablet */
    }

    .subsection-title {
        font-size: 1.75rem; /* Tablet: 28px */
        margin-bottom: 20px;
    }

    .subsection-title::after {
        width: 50px;
    }

    .detail-item {
        padding: 20px;
    }

    .detail-item h4 {
        font-size: 1.25rem; /* Tablet: 20px */
    }

    .detail-item p {
        font-size: 1rem; /* Tablet: 16px */
    }

    .details-grid {
        /* This rule creates a two-column grid for tablet and larger screens */
        grid-template-columns: repeat(2, 1fr);
        /* This increases the space between the grid items for a cleaner look on larger screens */
        gap: 24px;
    }

    .connect-content {
        gap: 32px;
    }

    /* Venue grid - still single column on tablet for better readability */
    .venue-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .venue-item {
        padding: 24px;
    }
    
    .venue-picture {
        height: 280px;
    }
    
    .instructors-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Tablet: larger columns */
        gap: 24px;
    }

    .instructor-photo {
        width: 120px;
        height: 120px;
    }

    .venue-picture-item-inline h4 {
        font-size: 1.125rem;
    }

    .signup-form {
        flex-direction: row; /* Tablet: side by side */
        gap: 16px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns */
        gap: 32px;
    }

    .footer-logo h3 {
        font-size: 1.75rem; /* Tablet: 28px */
    }

    .footer-logo p {
        font-size: 1rem; /* Tablet: 16px */
    }

    .footer-links h4,
    .footer-social h4 {
        font-size: 1.25rem; /* Tablet: 20px */
    }

    .footer-links a {
        font-size: 1rem; /* Tablet: 16px */
    }
}

/* Desktop Styles - 1024px and up */
@media (min-width: 1024px) {
    body {
        font-size: 16px; /* Keep base size */
    }

    .container {
        max-width: 1200px; /* Desktop container width */
        padding: 0 32px;
    }

    h2 {
        font-size: 2.5rem; /* Desktop: 40px */
        margin-bottom: 2.5rem;
    }

    h3 {
        font-size: 1.75rem; /* Desktop: 28px */
        margin-bottom: 1.5rem;
    }

    .western-header {
        padding: 20px 0;
    }

    .mobile-menu-button {
        display: none; /* Hide hamburger menu on desktop */
    }

    .nav-container {
        justify-content: center; /* Center navbar contents */
        gap: 2rem; /* Add consistent spacing */
    }

    .home-button {
        order: 1; /* Home button first (left) */
        flex-shrink: 0;
    }

    .nav-menu {
        order: 2; /* Navigation menu second (right of home button) */
        position: static; /* Desktop: normal positioning */
        transform: none;
        opacity: 1;
        visibility: visible;
        flex-direction: row;
        background: none;
        box-shadow: none;
        gap: 2rem;
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
    }

    .nav-menu li {
        border-bottom: none;
    }

    .nav-menu a {
        display: inline-block;
        padding: 8px 0;
        font-size: 1.1rem; /* Desktop: 17.6px */
        position: relative;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--hover-light);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    /* Desktop Sub-menu Styles */
    .has-submenu {
        position: relative;
    }

    .has-submenu > .main-nav-link::after {
        content: '▼';
        font-size: 0.7rem;
        margin-left: 6px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .has-submenu:hover > .main-nav-link::after {
        transform: rotate(180deg);
    }

    /* Desktop dropdown sub-menu */
    .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
        box-shadow: 0 4px 15px rgba(32, 175, 184, 0.4);
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1001;
        list-style: none;
        padding: 8px 0;
        margin: 0;
        max-height: none;
        overflow: visible;
    }

    .has-submenu:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .submenu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .submenu li:last-child {
        border-bottom: none;
    }

    .submenu a {
        display: block;
        padding: 12px 20px;
        color: var(--text-light);
        text-decoration: none;
        font-weight: 400;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background: transparent;
        border-radius: 0;
    }

    .submenu a:hover {
        background-color: rgba(255,255,255,0.15);
        color: var(--turquoise-light);
        padding-left: 24px;
    }

    /* Override the main nav link underline for items with submenus on desktop */
    .has-submenu > .main-nav-link::after {
        bottom: -5px;
    }

    .has-submenu > .main-nav-link:hover::after {
        width: 0; /* Remove underline for items with submenus */
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content {
        padding: 40px 32px;
        border-radius: 20px;
    }

    .hero-title {
        font-size: 3.5rem; /* Desktop: 56px */
        margin-bottom: 24px;
    }

    h3.hero-subtitle {
        font-size: 1.58203125rem !important; /* Desktop: 25.3125px (25% smaller) */
        margin-bottom: 32px;
        color: var(--turquoise);
    }

    .cta-button {
        padding: 20px 40px;
        font-size: 1.375rem; /* Desktop: 22px */
        border-radius: 12px;
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title::after {
        width: 100px;
    }

    .content-section,
    .experience-section {
        margin-bottom: 48px;
        padding: 32px;
    }
    
    /* Venue grid - desktop: still single column for best readability */
    .venue-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .venue-item {
        padding: 32px;
    }
    
    .venue-picture {
        height: 320px; /* Larger on desktop */
    }
    
    /* Volunteer grid - desktop 3 columns */
    .volunteer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .about .section-content p {
        font-size: 1.125rem; /* Desktop: 18px */
        margin-bottom: 24px;
    }
    
    .registration-open p {
        font-size: 1.125rem; /* Desktop: 18px - matches other sections */
        margin-bottom: 24px; /* Desktop spacing to match other sections */
    }

    .organizer-section {
        padding: 32px;
    }

    /* Organizer Bio - Desktop */
    .organizer-bio {
        gap: 32px;
    }

    .organizer-photo {
        width: 200px;
        height: 200px;
    }

    .organizer-text h3 {
        font-size: 1.75rem; /* Desktop: 28px */
        margin-bottom: 16px;
    }

    .organizer-text p {
        font-size: 1.125rem; /* Desktop: 18px */
    }

    .experience-section {
        margin-bottom: 48px;
        padding: 32px;
    }

    .social-links {
        gap: 24px;
        margin-top: 24px;
    }

    .social-button {
        width: 70px; /* Desktop: even larger buttons */
        height: 70px;
        font-size: 2rem; /* Desktop: 32px */
    }

    /* MailerLite Embedded Form Spacing - Desktop */
    .ml-embedded {
        margin-top: 28px; /* Even more space on desktop */
    }

    .subsection-title {
        font-size: 2rem; /* Desktop: 32px */
        margin-bottom: 24px;
    }

    .subsection-title::after {
        width: 60px;
    }

    .detail-item {
        padding: 24px;
    }

    .detail-item h4 {
        font-size: 1.375rem; /* Desktop: 22px */
    }

    .detail-item p {
        font-size: 1.1rem; /* Desktop: 17.6px */
    }

    .connect-content {
        gap: 40px;
    }

    .instructors-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Desktop: larger columns */
        gap: 32px;
    }

    .instructor-photo {
        width: 140px;
        height: 140px;
    }

    .venue-picture-item-inline {
        margin: 28px auto; /* Increase spacing on desktop */
    }

    .venue-picture {
        height: 250px;
    }

    .venue-picture-item-inline h4 {
        font-size: 1.25rem;
    }

    .contact-details p {
        font-size: 1rem; /* Desktop: 16px */
    }

    .social-links {
        gap: 16px;
    }

    .social-link {
        padding: 16px 24px;
        font-size: 1rem; /* Desktop: 16px */
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Desktop: auto-fit */
        gap: 40px;
    }

    .footer-logo h3 {
        font-size: 2rem; /* Desktop: 32px */
    }

    .footer-logo p {
        font-size: 1.1rem; /* Desktop: 17.6px */
    }

    .footer-links h4,
    .footer-social h4 {
        font-size: 1.375rem; /* Desktop: 22px */
    }

    .footer-links a {
        font-size: 1.1rem; /* Desktop: 17.6px */
    }
}

/* Large Desktop Styles - 1440px and up */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    h2 {
        font-size: 3rem; /* Large Desktop: 48px */
    }

    .instructors-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Large Desktop: larger columns */
        gap: 40px;
    }

    .venue-picture-item-inline {
        margin: 32px auto; /* Increase spacing on large desktop */
    }

    .venue-picture {
        height: 280px;
    }

    h3.hero-subtitle {
        font-size: 1.845703125rem !important; /* Large Desktop: 29.53125px (25% smaller) */
        color: var(--turquoise);
    }
    .about-content {
        max-width: 1200px;
    }

}

/* Volunteer Grid and Tiles - Mobile First */
.volunteer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column */
    gap: 16px; /* Mobile: less gap */
    margin-top: 16px;
}

.volunteer-tile {
    text-align: center;
    padding: 16px;
    background: var(--background-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--turquoise-light);
    box-shadow: 0 5px 20px rgba(32, 175, 184, 0.1);
}

.volunteer-tile:hover {
    transform: translateY(-2px); /* Mobile: smaller hover effect */
}

.volunteer-tile h4 {
    color: var(--turquoise-dark);
    margin-bottom: 12px;
    font-size: 1.375rem; /* Mobile: 22px - larger than h5 */
    font-weight: 700; /* Bold */
}

.volunteer-tile h5 {
    color: var(--turquoise-dark);
    margin-bottom: 8px;
    font-size: 1rem; /* Mobile: 16px - smaller than h4 */
    font-weight: 400; /* Not bold */
}

.volunteer-tile h5:nth-of-type(2) {
    margin-top: 20px; /* Add more space above "Good fit for someone who:" heading */
}

.volunteer-tile ul {
    text-align: center;
    list-style-position: inside; /* Center bullets with text */
    padding-left: 0;
    margin-top: 8px;
}

/* Change bullets to dashes for "Good fit for someone who:" lists (second ul in each tile) */
.volunteer-tile ul:nth-of-type(2) li::before {
    content: '– '; /* En dash instead of bullet */
    margin-right: 6px;
}

.volunteer-tile ul:nth-of-type(2) {
    list-style: none; /* Remove default bullets for the second list */
}

.volunteer-tile li {
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 0.95rem; /* Mobile: 15px */
    line-height: 1.4;
}

/* Volunteer Opportunities List - styled like h4 with stars */
.volunteer-opportunities-list {
    list-style: none;
    padding-left: 0;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.volunteer-opportunities-list li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
    text-align: center;
    line-height: 1.4;
    font-family: 'Alice', serif;
    font-size: 1.125rem; /* Mobile: 18px - larger for better readability */
}

.volunteer-opportunities-list li::before {
    content: '★ ';
    color: var(--turquoise);
    font-size: 1em;
    margin-right: 4px;
}

/* Tablet Styles for Volunteer */
@media (min-width: 768px) {
    .volunteer-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: two columns */
        gap: 24px;
    }

    .volunteer-tile {
        padding: 20px;
    }

    .volunteer-tile h4 {
        font-size: 1.5rem; /* Tablet: 24px - larger and bold */
        font-weight: 700;
    }

    .volunteer-tile h5 {
        font-size: 1.125rem; /* Tablet: 18px - smaller than h4, not bold */
        font-weight: 400;
    }

    .volunteer-tile li {
        font-size: 1rem; /* Tablet: 16px */
    }

    .volunteer-opportunities-list li {
        font-size: 1.25rem; /* Tablet: 20px - same as h4 */
    }
}

/* Desktop Styles for Volunteer */
@media (min-width: 1024px) {
    .volunteer-grid {
        grid-template-columns: repeat(3, 1fr); /* Desktop: three columns */
        gap: 32px;
    }

    .volunteer-tile {
        padding: 24px;
    }

    .volunteer-tile h4 {
        font-size: 1.75rem; /* Desktop: 28px - larger and bold */
        font-weight: 700;
    }

    .volunteer-tile h5 {
        font-size: 1.25rem; /* Desktop: 20px - smaller than h4, not bold */
        font-weight: 400;
    }

    .volunteer-tile li {
        font-size: 1.125rem; /* Desktop: 18px */
    }

    .volunteer-opportunities-list li {
        font-size: 1.375rem; /* Desktop: 22px - same as h4 */
    }
}
