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

body {
    font-family: 'TikTok Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

/* Mobile Status Bar Fix */
@supports (padding: max(0px)) {
    body {
        padding-top: max(0px, env(safe-area-inset-top));
    }
}

/* Ensure proper viewport handling on mobile */
html {
    height: 100%;
    width: 100%;
}

body.menu-open {
    overflow: hidden;
}

/* Ensure body allows scrolling on mobile */
body {
    overflow-x: hidden;
    min-height: 100vh;
}

/* Modern Top Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    background: rgba(44, 62, 80, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
}

/* Mobile Logo */
.mobile-logo {
    display: none;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
}

.mobile-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
    object-fit: contain;
}

.mobile-logo img:hover {
    filter: brightness(1.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    position: relative;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #2196f3;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2196f3;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 60%;
}

.nav-item.active .nav-link {
    color: #4a90e2;
    background: transparent;
    border-color: transparent;
    font-weight: 700;
    transform: none;
}

.nav-item.active .nav-link::before {
    width: 80%;
    background: #4a90e2;
    height: 2px;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-menu-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

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

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    color: #2196f3;
}

.mobile-nav-item.active .mobile-nav-link {
    color: #2196f3;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('home-bg.jpeg') center center/cover no-repeat;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-logo {
    max-width: 420px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .hero {
        height: 250px;
    }
    
    .events-hero {
        height: 250px;
    }
    
    .membership-hero {
        height: 250px;
    }
    
    .hero-logo {
        max-width: 320px;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 180px;
    }
    
    .events-hero {
        height: 180px;
    }
    
    .membership-hero {
        height: 180px;
    }
    
    .hero-logo {
        max-width: 280px;
        width: 75%;
    }
}

/* Main Content */
.main-content {
    margin: 0;
    padding: 3rem 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .main-content {
        padding: 2rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1.5rem 0.25rem;
    }
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 0.5rem;
    }
}

.purpose-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: left;
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.purpose-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.purpose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196f3, #1976d2);
}

.purpose-card:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.2);
}

.purpose-card:hover h2 {
    color: #1976d2;
}

.purpose-card:hover p {
    color: #424242;
}

.purpose-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
}

.purpose-card h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #2196f3, #1976d2);
    border-radius: 2px;
}

.purpose-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    gap: 3rem;
}

.footer-logo img {
    width: 200px;
    height: auto;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(1.3);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link svg {
    color: #fff;
}

.footer-powered {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
}

.footer-powered p {
    margin: 0;
    font-size: 1.2rem;
    color: #bdc3c7;
    font-weight: 500;
}

.footer-powered a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.footer-powered a:hover {
    color: #ffffff;
    border-bottom-color: #3498db;
}

.footer-copyright {
    text-align: center;
    margin-top: 1rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #95a5a6;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .hero {
        height: 400px;
        margin-top: 0;
    }
    
    /* Hide desktop menu on mobile */
    .desktop-menu {
        display: none !important;
    }
    
    /* Show mobile logo and hamburger button */
    .mobile-logo {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .purpose-title {
        font-size: 2rem;
        text-align: left;
    }
    
    .purpose-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .purpose-card h2 {
        font-size: 1.1rem;
    }
    
    .purpose-card p {
        font-size: 0.95rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-logo img {
        width: 200px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2rem 0.5rem;
    }
    
    .purpose-title {
        font-size: 1.8rem;
    }
    
    .purpose-card {
        padding: 1.25rem;
        min-height: 160px;
    }
    
    .purpose-card h2 {
        font-size: 1rem;
    }
    
    .purpose-card p {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 3rem 0 2rem;
        height: auto;
        min-height: 300px;
    }
    
    .footer-logo img {
        width: 160px;
    }
    
    .mobile-nav-link {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
} 

/* Events Page Styles */
.events-hero {
    background: url('events-bg.jpeg') center center/cover no-repeat;
    height: 500px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}



/* Introduction Section */
.intro-section {
    padding: 1rem;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .intro-section {
        padding: 0.25rem;
    }
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    text-align: left;
    max-width: 1000px;
}

/* Events Section */
.events-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
    margin-top: 1rem;
}

/* Mobile line break for share event title */
.mobile-break {
    display: none;
}

.events-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: left;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.12);
}

.event-image {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.event-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex-grow: 1;
    padding: 0.25rem 0;
}

.event-date {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    padding: 0.25rem 0;
    margin: 0.75rem 0;
}

/* Share Event Section */
.share-event-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.share-event-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.share-event-text {
display: flex;
justify-content: center;
align-items: center;
}

.share-event-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.share-event-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.event-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15), 0 6px 20px rgba(52, 73, 94, 0.1);
    padding: 2rem 2rem 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 1200px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-form:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.25), 0 8px 24px rgba(52, 73, 94, 0.15);
    transform: translateY(-3px);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'TikTok Sans', sans-serif;
    font-size: 1rem;
    background: #f9f9f9;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196f3;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    border: none;
    padding: 1rem 4rem;
    border-radius: 6px;
    font-family: 'TikTok Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
}

/* Responsive Design for Events Page */
@media (max-width: 1024px) {
    .share-event-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .share-event-title {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .events-hero {
        height: 400px;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    

    
    .intro-section {
        padding: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
        text-align: left;
        line-height: 1.6;
    }
    
    .events-section {
        padding: 0 1rem 2rem;
    }
    
    .events-title {
        font-size: 2rem;
        text-align: left;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-image {
        flex: none;
        height: 200px;
        overflow: hidden;
    }
    
    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    .event-content {
        padding: 1.25rem;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .event-description {
        font-size: 0.95rem;
    }
    
    .share-event-section {
        padding: 0 1rem 2rem;
    }
    
    .share-event-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .share-event-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .share-event-form {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    

    
    .intro-section {
        padding: 1rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .events-section {
        padding: 0 0.5rem 1.5rem;
    }
    
    .events-title {
        font-size: 1.8rem;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
    
    .event-image {
        height: 180px;
    }
    
    .share-event-section {
        padding: 0 0.5rem 1.5rem;
    }
    
    .share-event-title {
        font-size: 1.8rem;
    }
    
    .share-event-form {
        padding: 1.25rem;
    }
    
    .event-form {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
} 

/* Membership Page Styles */
.membership-hero {
    background: url('membership-bg.jpeg') center center/cover no-repeat;
    height: 500px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.membership-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0rem;
}

.membership-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15), 0 6px 20px rgba(52, 73, 94, 0.1);
    padding: 2rem 2rem 1.5rem;
    margin-bottom: 0;
    width: 100%;
    max-width: 900px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.membership-form:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.25), 0 8px 24px rgba(52, 73, 94, 0.15);
    transform: translateY(-3px);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: block;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'TikTok Sans', sans-serif;
    font-size: 1rem;
    background: #f9f9f9;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196f3;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 4px;
    font-family: 'TikTok Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
}

.membership-contact {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.membership-contact a {
    color: #2196f3;
    text-decoration: underline;
    word-break: break-all;
}

/* Desktop optimizations */
@media (min-width: 1200px) {
    .membership-section {
        padding: 0 2rem;
    }
    .membership-form {
        padding: 2rem 2.5rem 1.5rem;
        max-width: 1000px;
    }
}

@media (max-width: 900px) {
    .membership-section {
        padding: 0 1rem;
        min-height: auto;
    }
    .membership-form {
        padding: 1.5rem 1rem 1rem;
        max-width: 100%;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 600px) {
    .membership-hero {
        height: 400px;
        margin-top: 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .membership-section {
        padding: 0 1rem;
    }
    .membership-form {
        padding: 1rem 1rem 0.5rem;
    }
    .form-group label {
        font-size: 0.95rem;
    }
    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.6rem;
    }
    .submit-btn {
        width: 100%;
        padding: 0.7rem 0;
    }
    .membership-contact {
        font-size: 0.95rem;
    }
} 