/* Custom styles for HAIO website - Bootstrap 5 */

:root {
    --primary-color: #4f9cff;
    --bg-dark: #111827;
    --bg-card: #1F2937;
    --molo-red: #cd2a3e;
    --molo-red-hover: #a82232;
    --haio-green: #477050;
    --haio-green-hover: #375a40;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: #D1D5DB;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    background-color: var(--bg-card) !important;
}
.navbar-logo {
    height: 50px;
}
.navbar-offset {
    height: 76px;
}
.nav-link {
    color: #D1D5DB !important;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}
.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
}
.brand-subtitle {
    font-size: 0.75rem;
    color: #9CA3AF;
}

/* Page Title */
.page-title {
    background-color: var(--bg-card);
    padding: 2rem 1rem;
    text-align: center;
    margin: 0;
}

.page-title h1 {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Content sections */
.content-section {
    background-color: var(--bg-card);
    padding: 3rem 1.5rem;
    margin: 2rem 0;
}

/* Hero Section */
.hero-section {
    padding: 2rem 2rem;
    background: linear-gradient(135deg, var(--bg-card) 0%, #0f1419 100%);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    transition: opacity 0.5s ease-in-out;
}

/* Selection Section */
.selection-section h2 {
    font-size: 1.5rem;
    color: #F3F4F6;
    margin-top: 1rem;
    margin-bottom: 0;
}



footer {
    background-color: var(--bg-card);
}

/* Selection Cards */
.selection-card {
    border-radius: 16px;
    padding: 4rem 2.5rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.selection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.selection-card:hover::before {
    opacity: 0.2;
}

#molo-card {
    background: linear-gradient(135deg, #cd2a3e 0%, #8b1f2e 50%, #cd2a3e 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

#molo-card::before {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 60%);
}

#haio-card {
    background: linear-gradient(135deg, #477050 0%, #2d4a35 50%, #477050 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

#haio-card::before {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 60%);
}

/* Discord Card */
#discord-card {
    background: linear-gradient(135deg, #5865F2 0%, #404EED 50%, #5865F2 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    min-height: 35vh;
    padding: 3rem 2.5rem;
}

#discord-card::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
}

.discord-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#discord-btn {
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

#discord-btn:hover {
    background-color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

#discord-btn i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.selection-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.selection-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.selection-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#molo-btn {
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

#molo-btn:hover {
    background-color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

#haio-btn {
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

#haio-btn:hover {
    background-color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Card Notice */
.card-notice {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #ffd900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .selection-section h2 {
        font-size: 1.5rem;
    }
    
    .selection-card {
        min-height: 50vh;
        padding: 3rem 2rem;
    }
    
    #discord-card {
        min-height: 40vh;
        padding: 2.5rem 2rem;
    }
    
    .discord-icon {
        font-size: 3rem;
    }
    
    .selection-title {
        font-size: 2rem;
    }
    
    .selection-description {
        font-size: 1rem;
    }
    
    .selection-btn {
        padding: 0.85rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .selection-section h2 {
        font-size: 1.3rem;
    }
    
    .selection-card {
        min-height: 45vh;
        padding: 2.5rem 1.5rem;
    }
    
    .selection-title {
        font-size: 1.75rem;
    }
}


/* MÓLÓ Hero Section */
.molo-hero {
    background: linear-gradient(180deg, #cd2a3dae 0%, var(--molo-red) 20%, var(--molo-red-hover) 100%);
    color: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.molo-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.molo-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.molo-hero .btn-light {
    background-color: white;
    color: var(--molo-red);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.molo-hero .btn-light:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* MÓLÓ Content Blocks */
.molo-content-block {
    background-color: var(--bg-card);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.molo-content-block h2 {
    color: var(--molo-red);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--molo-red);
    padding-bottom: 0.5rem;
}

.molo-content-block h5 {
    color: #FFFFFF;
}

.molo-content-block p {
    color: #D1D5DB;
    text-align: justify;
}

/* MÓLÓ Feature Box */
.molo-feature-box {
    background-color: var(--bg-card);
    border-left: 4px solid var(--molo-red);
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.molo-feature-box:hover {
    background-color: rgba(205, 42, 62, 0.05);
    transform: translateX(5px);
}

.molo-feature-box h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.molo-feature-box i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: var(--molo-red);
}

.molo-feature-box p {
    color: #D1D5DB;
}

/* MÓLÓ Circle Icons */
.molo-circle-icon {
    width: 80px;
    height: 80px;
    background-color: var(--molo-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.molo-circle-icon:hover {
    background-color: var(--molo-red);
    transform: rotate(360deg);
}

/* MÓLÓ Custom List */
.molo-custom-list {
    list-style: none;
    padding-left: 0;
}

.molo-custom-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #D1D5DB;
}

.molo-custom-list li i {
    color: var(--molo-red);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* MÓLÓ Alert Info */
.molo-alert-info {
    background-color: rgba(205, 42, 62, 0.05);
    border-left: 5px solid var(--molo-red);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.molo-alert-info h5 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 1rem;
}

.molo-alert-info h5 i {
    color: var(--molo-red);
}

.molo-alert-info p {
    color: #D1D5DB;
}

.molo-alert-info .btn-primary {
    background-color: var(--molo-red);
    border-color: var(--molo-red);
    font-weight: 600;
}

.molo-alert-info .btn-primary:hover {
    background-color: var(--molo-red-hover);
    border-color: var(--molo-red-hover);
}

/* MÓLÓ Alert Success */
.molo-alert-success {
    background-color: rgba(205, 42, 62, 0.05);
    border: 2px solid var(--molo-red);
    color: #D1D5DB;
    padding: 1rem;
    border-radius: 10px;
}

.molo-alert-success i {
    color: var(--molo-red);
}

/* MÓLÓ Accordion */
.molo-accordion .accordion-item {
    background-color: var(--bg-card);
    border: 1px solid rgba(205, 42, 62, 0.2);
    margin-bottom: 0.5rem;
}

.molo-accordion .accordion-button {
    background-color: var(--bg-card);
    color: #FFFFFF;
    font-weight: 600;
}

.molo-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(205, 42, 62, 0.1);
    color: #FFFFFF;
    border-left: 4px solid var(--molo-red);
}

.molo-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(205, 42, 62, 0.25);
}

.molo-accordion .accordion-body {
    background-color: var(--bg-card);
    color: #D1D5DB;
}

/* MÓLÓ CTA Section */
.molo-cta {
    background: linear-gradient(135deg, rgba(205, 42, 62, 0.1) 0%, rgba(139, 31, 46, 0.05) 100%);
    border: 2px solid var(--molo-red);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.molo-cta h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.molo-cta .lead {
    color: #D1D5DB;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.molo-cta .btn-primary {
    background-color: var(--molo-red);
    border-color: var(--molo-red);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.molo-cta .btn-primary:hover {
    background-color: var(--molo-red-hover);
    border-color: var(--molo-red-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(205, 42, 62, 0.4);
}

/* ====================================== */
/* HAIO SPECIFIC STYLES (GREEN THEME)    */
/* ====================================== */

/* HAIO Hero Section */
.haio-hero {
    background: linear-gradient(0deg, #ffffff 0%, var(--haio-green) 40%, var(--haio-green-hover) 100%);
    color: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.haio-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.haio-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.haio-hero .btn-light {
    background-color: white;
    color: var(--haio-green);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.haio-hero .btn-light:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* HAIO Content Blocks */
.haio-content-block {
    background-color: var(--bg-card);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.haio-content-block h2 {
    color: var(--haio-green);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--haio-green);
    padding-bottom: 0.5rem;
}

.haio-content-block h5 {
    color: #FFFFFF;
}

.haio-content-block p {
    color: #D1D5DB;
    text-align: justify;
}

/* HAIO Feature Box */
.haio-feature-box {
    background-color: var(--bg-card);
    border-left: 4px solid var(--haio-green);
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.haio-feature-box:hover {
    background-color: rgba(71, 112, 80, 0.05);
    transform: translateX(5px);
}

.haio-feature-box h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.haio-feature-box i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: var(--haio-green);
}

.haio-feature-box p {
    color: #D1D5DB;
}

/* HAIO Circle Icons */
.haio-circle-icon {
    width: 80px;
    height: 80px;
    background-color: var(--haio-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.haio-circle-icon:hover {
    background-color: var(--haio-green-hover);
    transform: rotate(360deg);
}

/* HAIO Custom List */
.haio-custom-list {
    list-style: none;
    padding-left: 0;
}

.haio-custom-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #D1D5DB;
}

.haio-custom-list li i {
    color: var(--haio-green);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* HAIO Alert Success */
.haio-alert-success {
    background-color: rgba(71, 112, 80, 0.05);
    border: 2px solid var(--haio-green);
    color: #D1D5DB;
    padding: 1rem;
    border-radius: 10px;
}

.haio-alert-success i {
    color: var(--haio-green);
}

/* HAIO Quote Box */
.haio-quote-box {
    background: linear-gradient(135deg, var(--haio-green) 0%, var(--haio-green-hover) 100%);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
}

.haio-quote-box h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.haio-quote-box .lead {
    color: #FFFFFF;
    font-size: 1.2rem;
}

.haio-quote-box small {
    color: rgba(255, 255, 255, 0.9);
}

