/* THIS IS MAIN SITE CSS */
:root {
    /* Main brand color */
    --primary-color: #ecd880;
    /* Complementary colors from styleguide */
    --secondary-color: #ffd2cc;
    /* Analogous colors for harmony */
    --accent-warm: #ffb497;
    --accent-cool: #ffa280;
    /* Neutral tones */
    --neutral-dark: #222222;
    --neutral-mid: #636e72;
    --neutral-light: #fffdf2;
}

.gradient-bg {
    background: linear-gradient(135deg, #fffdf2 0%, #ffd2cc 100%);
}

/* Navbar */
.navbar {
    background-color: #222222 !important;
    box-shadow: 0 2px 15px rgba(236, 216, 128, 0.08) !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffa280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #fffdf2;
}

.nav-item {
    margin-left: 0.5rem !important;
}

.nav-link {
    color: #ffa280 !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: #ffa280 !important;
    font-weight: 600;
}

.nav-link:hover {
    color: #fffdf2 !important;
}

/* Add these rules to match landing page positioning */
.navbar-nav {
    margin-left: 0;  /* Reset the margin */
    display: flex;
    align-items: center;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    margin-right: 1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Make hamburger menu icon match brand color */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 162, 128, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .btn-custom {
    margin-left: 1rem;
}

footer {
    background-color: #222222 !important;
    padding: 2rem 0 !important;
}

footer p {
    color: #fff;
    font-size: 0.95rem;
}

footer .navbar-brand {
    color: white;
}

.btn-custom {
    background-color: #ffa280;
    color: var(--neutral-dark);
    border-radius: 25px;
    padding: 8px 20px;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #ffd2cc;
    color: var(--neutral-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 216, 128, 0.3);
}

.feature-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--neutral-light);
    border: 1px solid rgba(236, 216, 128, 0.1);
    height: 100%;
    padding: 1.5rem !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cool);
    box-shadow: 0 10px 20px rgba(236, 216, 128, 0.15);
}

.feature-card i {
    color: var(--accent-cool);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-card .btn-custom {
    margin-top: 1rem;
    background-color: #ffa280;
}

.feature-card .btn-custom:hover {
    background-color: #ffd2cc;
}

.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.hero-section h1 {
    color: var(--neutral-dark);
}

.hero-section p {
    color: var(--neutral-mid);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background-color: var(--neutral-dark);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--neutral-dark);
    transform: translateY(-3px);
}

section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

@media (max-width: 992px) {
    .nav-item {
        margin: 0.25rem 0 !important;
    }
    
    .hero-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* ABOUT PAGE */
.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(236, 216, 128, 0.2);
}

.stats-card {
    background: var(--neutral-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 216, 128, 0.1);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(236, 216, 128, 0.15);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffa280;
}

.mission-card {
    background: var(--neutral-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(236, 216, 128, 0.1);
}

.quote-text {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--neutral-mid);
    line-height: 1.8;
}

.quote-block-pink {
    background-color: var(--secondary-color) !important;
    border-radius: 1rem;
    padding: 1.5rem;
}

.quote-block-pink .quote-text {
    color: var(--neutral-dark);
}

.quote-block-pink .text-muted {
    color: rgba(34, 34, 34, 0.75) !important;
}

.modal-content {
    border-radius: 20px;
    border: none;
    background: var(--neutral-light);
}

.modal-header {
    border-bottom: 1px solid rgba(236, 216, 128, 0.1);
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.story-image {
    border-radius: 15px;
    margin-bottom: 1.5rem;
    max-width: 400px;
    width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    .story-image {
        max-width: 100%;
    }
}

.team-member {
    height: 150px;
}

/* COMING SOON PAGE */
.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    z-index: 0;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.brand-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffa280;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 3rem;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffa280, #ffd2cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.accent-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-warm));
    margin: 2rem auto;
    border-radius: 2px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--neutral-mid);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.social-icons-wrapper {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
}

.return-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
    color: var(--neutral-dark);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 216, 128, 0.2);
}

.return-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 216, 128, 0.3);
    color: var(--neutral-dark);
}

.return-home i {
    transition: transform 0.3s ease;
}

.return-home:hover i {
    transform: translateX(-4px);
}

/* Mobile responsiveness for iPhone SE and similar devices */
@media (max-width: 576px) {
    /* Hero section adjustments */
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .hero-section p.lead {
        font-size: 1.1rem !important;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Feature cards */
    .feature-card {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem !important;
    }
    
    .feature-card i {
        font-size: 2rem !important;
    }
    
    /* Buttons */
    .btn-custom {
        font-size: 0.9rem;
        padding: 6px 16px;
        white-space: normal;
        line-height: 1.2;
    }
    
    /* Section padding */
    section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Video section */
    .ratio {
        margin-bottom: 1rem;
    }
    
    /* Social icons */
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Navbar */
    .navbar {
        position: relative;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
        margin: 0 auto;
        position: static;
        transform: none;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #222222;
        z-index: 1000;
    }
    
    .navbar-nav .btn-custom {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    /* Footer */
    footer {
        padding: 1.5rem 0 !important;
    }
    
    footer p,
    footer a {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
}