/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --primary: #E81B8E;
    --primary-dark: #D41A7E;
    --secondary: #6B2D94;
    --secondary-dark: #5A2580;
    --light: #F9F7FC;
    --light-gray: #F5F5F5;
    --dark: #2C2C2C;
    --text: #333;
    --text-light: #666;
    --border: #E0E0E0;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(232, 27, 142, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   CONTAINER & GRID
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-light {
    background-color: var(--light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
}

#home .section-intro {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    padding: 30px;
    border-left: 4px solid var(--primary);
    background-color: rgba(232, 27, 142, 0.05);
    margin-bottom: 50px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--secondary);
}

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

.logo-text {
    display: none;
}

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

.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

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

.cta-nav::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(232, 27, 142, 0.1);
    color: var(--primary);
    transition: all 0.3s ease;
}

.nav-instagram:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.nav-item-instagram {
    display: none;
}

.nav-link-instagram {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link-instagram:hover {
    color: var(--primary) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #f5e6f0 0%, #e6f3f9 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    z-index: 2;
    animation: slideInLeft 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 50px;
    right: 100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: 50px;
    right: 50px;
    animation: float 8s ease-in-out infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   PILLARS / CARDS
   ============================================ */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pillar {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pillar:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.pillar h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pillar p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   TWO COLUMNS LAYOUT
   ============================================ */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.column {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.column h3 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.column h4 {
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.column ul {
    list-style: none;
    padding-left: 0;
}

.column li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.column li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.column.highlight {
    background: linear-gradient(135deg, rgba(232, 27, 142, 0.05), rgba(107, 45, 148, 0.05));
    border-left-color: var(--secondary);
}

/* ============================================
   ORGANIZATION CHART
   ============================================ */
.organization {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(232, 27, 142, 0.05), rgba(107, 45, 148, 0.05));
    border-radius: 12px;
}

.organization h3 {
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.org-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.org-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.org-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.org-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.org-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   MEDIA CARDS
   ============================================ */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.media-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.media-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.media-card h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.media-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.editorial-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.editorial-box h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.editorial-box p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================
   ACTION CARDS
   ============================================ */
.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.action-card {
    background: var(--light);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.action-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.action-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.engagement-cta {
    text-align: center;
    padding: 40px;
    background: var(--light);
    border-radius: 12px;
}

.engagement-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 600;
}

/* ============================================
   PRINCIPLES GRID
   ============================================ */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.principle {
    background: linear-gradient(135deg, rgba(232, 27, 142, 0.02), rgba(107, 45, 148, 0.02));
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.principle:nth-child(2n) {
    border-left-color: var(--secondary);
}

.principle:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.principle h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.principle p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONY SECTION
   ============================================ */
.testimony-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.testimony-principle {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimony-principle:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimony-principle h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.testimony-principle p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   MEMBERSHIP CARDS
   ============================================ */
.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.membership-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.membership-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.membership-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.membership-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ============================================
   FORMS
   ============================================ */
.testimony-form-section,
.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.testimony-form-section h3,
.contact-form h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.testimony-form-section > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 27, 142, 0.1);
}

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

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.contact-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary);
    font-weight: 600;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, var(--secondary), #4a1f6b);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding: 40px 0;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
    }

    .menu-toggle {
        display: block;
    }

    .logo-text {
        display: inline;
    }

    .nav-social {
        display: none;
    }

    .nav-item-instagram {
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
    }

    /* Hero */
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Two Columns */
    .two-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Pillars */
    .pillars {
        grid-template-columns: 1fr;
    }

    /* Media Grid */
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Membership Cards */
    .membership-cards,
    .action-cards,
    .testimony-info,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    /* Organization */
    .org-chart {
        grid-template-columns: 1fr;
    }

    /* Forms */
    .testimony-form-section,
    .contact-form {
        padding: 25px;
    }

    /* Footer */
    .footer-content {
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-container {
        height: 60px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .column {
        padding: 15px;
    }

    .lead {
        padding: 15px;
        font-size: 1rem;
    }

    .section {
        padding: 35px 0;
    }
}