/*
Theme Name: Holmesdale Keets FC
Description: A modern WordPress theme for Holmesdale Keets FC, a South London women's football club
Version: 1.0
Author: Claude Code
Text Domain: holmesdale-keets
*/

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo h1 {
    color: #22c55e;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-image {
    height: 75px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    padding-top: 8px;
}

.nav-menu {
      display: none !important;
      position: absolute !important;
      top: 100% !important;
      left: 20px !important;
      right: auto !important;
      width: 280px !important;
      max-width: 280px !important;
      background: #fff !important;
      flex-direction: column !important;
      padding: 1.5rem !important;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
      list-style: none !important;
      gap: 1rem !important;
      border-radius: 8px !important;
      z-index: 999 !important;
  }

  .nav-menu.active {
      display: flex !important;
  }

.nav-icons {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    right: 20px;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
    color: #22c55e;
    transition: transform 0.3s ease, color 0.3s ease;
    border-radius: 8px;
}

.nav-icon svg {
    width: 28px;
    height: 28px;
    fill: #22c55e;
    transition: fill 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1);
    background-color: rgba(34, 197, 94, 0.1);
}

.nav-icon:hover svg {
    fill: #16a34a;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #22c55e;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: absolute;
    left: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 40px 0 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Contact page hero buttons - stacked vertically */
.contact-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-hero-buttons .btn {
    width: 100%;
    text-align: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-secondary:hover {
    background: #22c55e;
    color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Membership Perks */
.membership-perks {
    padding: 40px 0 60px 0;
    background: #fff;
}

/* Contact page How to Join section spacing */
#contact-info {
    padding: 40px 0 60px 0;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.perk-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.perk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.perk-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.perk-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.perk-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Single card spanning full width */
.perk-card.single-card {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* CTA Button in single card */
.perk-card.single-card .cta-button {
    margin-top: 2rem;
    display: inline-block;
}

/* CTA Button Spacing and Alignment for Contact Page */
.perk-card .cta-button {
    margin-top: 2rem;
    align-self: flex-end;
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #1f2937;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #22c55e;
}

.footer-bottom {
    border-top: 1px solid #22c55e;
    padding-top: 2rem;
    text-align: center;
    color: #4b5563;
}

/* WordPress Content Styles */
.site-content {
    margin-top: 80px;
    padding: 60px 0;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
}

.entry-meta {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-icons {
        gap: 0.5rem;
    }
    
    .nav-icon {
        font-size: 1.3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .perks-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .perk-card,
    .card-content {
        padding: 1.5rem;
    }
    
    /* Consistent mobile text sizing for about page */
    .about-hero-subtitle {
        font-size: 1rem !important;
    }
}