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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #2D040F;
    background-color: #FFF4EE;
    letter-spacing: 0.01em;
}

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

/* Navigation */
.navbar {
    background: #FFF4EE;
    box-shadow: 0 2px 10px rgba(45, 4, 15, 0.1);
    position: sticky;
    top: 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: 70px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #2D040F;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: #8C031C;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #8C031C;
}

.join-btn {
    background: linear-gradient(135deg, #8C031C, #2D040F);
    color: #FFF4EE;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 3, 28, 0.3);
}

.join-btn.active {
    background: linear-gradient(135deg, #2D040F, #8C031C);
}

/* Banner */
.banner {
    width: 100%;
    margin-bottom: 2rem;
}

.banner-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #8C031C;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.2rem;
    color: #2D040F;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    margin-bottom: 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #8C031C;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #2D040F;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-text p {
    margin-bottom: 1.5rem;
    color: #2D040F;
    line-height: 1.8;
}

.cta-section {
    background: linear-gradient(135deg, #FFF4EE, #f8f9fa);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px solid #8C031C;
}

.cta-section-below-video {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.cta-section h2 {
    color: #8C031C;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.5rem;
}

.highlight-box h2 {
    color: #FFF4EE;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 1.5rem;
}

.highlight-box p {
    color: #FFF4EE;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8C031C, #2D040F);
    color: #FFF4EE;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.note {
    font-size: 0.9rem;
    color: #FFF4EE;
    font-style: italic;
    margin-top: 1rem;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Quick Links */
.quick-links {
    margin: 4rem 0;
}

.quick-links h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2D040F;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.link-card {
    background: #FFF4EE;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: #2D040F;
    box-shadow: 0 5px 15px rgba(45, 4, 15, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid #8C031C;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(140, 3, 28, 0.15);
}

.link-card .emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.link-card h3 {
    color: #8C031C;
    font-weight: 400;
    font-size: 1.1rem;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

/* Page sections with proper spacing */
.networking-section, .testimonials-section, .partnership-intro, .partnership-options, .our-partners, .founder-section, .board-section, .join-info {
    margin: 3rem 0;
}

.networking-section h2, .testimonials-section h2, .partnership-intro h2, .partnership-options h2, .our-partners h2, .founder-section h2, .board-section h2 {
    margin-bottom: 2rem;
    color: #8C031C;
    font-weight: 400;
    font-size: 1.8rem;
}

.networking-section h3, .partnership-intro h3 {
    margin: 2rem 0 1rem 0;
    color: #8C031C;
    font-weight: 400;
    font-size: 1.3rem;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #2D040F;
}

.highlight-box {
    background: linear-gradient(135deg, #8C031C, #2D040F);
    color: #FFF4EE;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.highlight-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.steps-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    color: #2D040F;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.principles {
    margin: 2rem 0;
}

/* Profile cards with images need flex layout */
.principle:has(.profile-image) {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.principle h3 {
    color: #8C031C;
    margin-bottom: 1rem;
}

.share-guidelines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.do-share, .avoid-share {
    padding: 1.5rem;
    border-radius: 10px;
}

.do-share {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.avoid-share {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.do-share h3 {
    color: #155724;
}

.avoid-share h3 {
    color: #721c24;
}

.final-thoughts {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Community Guidelines */
.community-guidelines {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.guidelines-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.guidelines-list li {
    margin-bottom: 1rem;
    color: #2D040F;
}

/* Profile Cards - now using principle class */
.principle {
    background: #FFF4EE;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #8C031C;
}

.profile-image {
    flex-shrink: 0;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #8C031C;
}

.profile-content h3 {
    color: #8C031C;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.3rem;
}

.profile-content p {
    margin-bottom: 1rem;
    color: #2D040F;
    line-height: 1.8;
}

/* LinkedIn icon styling */
.linkedin-link {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.linkedin-link:hover {
    transform: scale(1.1);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* Networking Features */
.networking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Testimonials - now using principle class */

/* Partnership Options - now using principle class */

.contact-info {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info a {
    color: #8C031C;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.benefits-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    color: #2D040F;
}

.partners-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 2rem auto;
}

/* Join Form */
.join-form-section {
    margin: 3rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #FFF4EE;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(45, 4, 15, 0.1);
    border: 2px solid #8C031C;
}

.form-container h2 {
    text-align: center;
    color: #8C031C;
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1.5rem;
}

.tally-form {
    width: 100%;
}

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

/* Info cards - now using principle class */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Footer */
.footer {
    background: #2D040F;
    color: #FFF4EE;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 1rem 20px;
    }
    
    .nav-menu {
        margin: 1rem 0;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .share-guidelines {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .networking-features {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .join-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
