/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fefff0;
    color: black;
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* Header styles */
header {
    background: linear-gradient(135deg, #1a4d1a 0%, #2d6b2d 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    margin-bottom: 1rem;
}

.main-logo {
    max-height: 266px;
    width: auto;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    font-style: italic;
}

/* Main content sections */
main {
    padding: 0;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(26, 77, 26, 0.1);
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a4d1a;
    font-weight: 300;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a4d1a;
    font-weight: 400;
}

/* Hero section */
.hero {
    background: linear-gradient(45deg, rgba(26, 77, 26, 0.05) 0%, rgba(26, 77, 26, 0.1) 100%);
    padding: 5rem 0;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-style: italic;
    color: #1a4d1a;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero p {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact section and info cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: rgba(26, 77, 26, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 77, 26, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 77, 26, 0.1);
    border-color: rgba(26, 77, 26, 0.2);
}

/* Meeting information styling */
.meeting-time {
    font-weight: 600;
    color: #1a4d1a;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.location {
    margin-bottom: 1rem;
    color: #666;
}

/* Tentative/placeholder styling */
.tentative-note,
em {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    background: rgba(255, 193, 7, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
    margin: 1rem 0;
    display: inline-block;
    text-align: left;
    max-width: 100%;
}

/* Membership pricing styles */
.info-card p strong {
    color: #1a4d1a;
    font-weight: 600;
}

.info-card ul {
    text-align: left;
    max-width: 800px;
    margin: 1rem auto;
    padding-left: 2rem;
}

.info-card ul li {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Social media links styling */
.social-links {
    margin: 2rem 0;
}

.social-links a {
    display: inline-block;
    color: #1a4d1a;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    border: 2px solid #1a4d1a;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.social-links a:hover {
    background: #1a4d1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 26, 0.3);
}

.social-links a:focus {
    outline: 2px solid #1a4d1a;
    outline-offset: 2px;
}

/* New Member Orientation section styling */
.orientation-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(26, 77, 26, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(26, 77, 26, 0.15);
    position: relative;
}

.orientation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a4d1a, #2d6b2d);
    border-radius: 12px 12px 0 0;
}

.orientation-section h3 {
    color: #1a4d1a;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.orientation-section p {
    margin-bottom: 1rem;
    text-align: left;
    max-width: 100%;
}

.orientation-section strong {
    color: #1a4d1a;
    font-weight: 600;
}

/* Disclaimer text styling */
.disclaimer-text {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #856404;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #1a4d1a;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.secondary-logo {
    max-height: 60px;
    width: auto;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
}

@media (max-width: 1024px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .social-links a {
        padding: 0.6rem 1.2rem;
        margin: 0.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    header {
        padding: 1.5rem 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .main-logo {
        max-height: 80px;
    }
    
    .secondary-logo {
        max-height: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        text-align: center;
    }
    
    .social-links a {
        display: block;
        margin: 0.5rem auto;
        max-width: 200px;
    }
    
    .info-card ul {
        padding-left: 1.5rem;
    }
    
    .orientation-section,
    .info-card {
        padding: 1.5rem;
    }
    
    .tentative-note,
    em {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}
