/*
Theme Name: WISE Theme
Theme URI: https://wisesports.com
Description: Women in Sports and Excellence WordPress Theme
Version: 1.0
Author: WISE
License: GNU General Public License v2 or later
Text Domain: wise-theme
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #e6b800 0%, #cc9900 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 1000;
}

.announcement-bar a {
    color: white;
    text-decoration: none;
}

.contact-form label {
    font-weight: bold;
    margin-top: 20px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form button {
    margin-top: 20px;
    padding: 12px 25px;
    background: #D4A017;
    border: none;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #b58c12;
}


/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.site-logo img {
    height: 65px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    left: 50px;
}

.primary-menu {
    display: flex;
    list-style: none;
    left : 35px;
    margin: 0;
    padding: 0;
}

.primary-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    color: #e6b800;
}

.primary-menu .current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e6b800;
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e6b800;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 85px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: white;
    padding: 60px 40px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-header .subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
}

/* Content Sections */
.content-section {
    padding: 80px 40px;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.column-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.column-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Reverse layout */
.two-column-layout.reverse {
    direction: rtl;
}

.two-column-layout.reverse > * {
    direction: ltr;
}

/* Image Grid */
.image-grid {
    display:  grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 30px;
    margin-top: 40px;
}

.image-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Teams Grid */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.team-info {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.team-arrow {
    font-size: 2rem;
    color: #2c3e50;
    transition: transform 0.3s ease;
}

.team-card:hover .team-arrow {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.contact-section .section-title {
    color: white;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.contact-icons a {
    color: white;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.contact-icons a:hover {
    color: #e6b800;
    transform: translateY(-5px);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 40px 30px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-social a {
    color: white;
    font-size: 28px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #e6b800;
}

.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-menu a:hover {
    color: #e6b800;
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 20px;
    }
    
    .site-logo img {
        height: 50px;
    }
    
    .primary-menu,
    .social-icons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation.mobile-active .primary-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-icons {
        left: 30px;
    }
    
    .contact-icons a {
        font-size: 2.5rem;
    }
}
.contact-form-rows {
    max-width: 800px; /* was 700px */
    margin: 70px auto; /* added more top margin for spacing */
}

.contact-form-rows .form-row {
    gap: 30px; /* more space between columns */
}

.contact-form-rows input[type="text"],
.contact-form-rows input[type="email"],
.contact-form-rows textarea {
    padding: 18px 20px; /* was 14px 16px */
    font-size: 1.15rem; /* slightly bigger */
    border-radius: 10px; /* slightly rounder */
}

.contact-form-rows textarea {
    min-height: 180px; /* bigger text area */
}

.contact-form-rows button {
    padding: 16px 48px; /* bigger button */
    font-size: 1.2rem; /* larger text */
    border-radius: 12px; /* rounder */
}
