:root {
    --brand-black: #000000;
    --brand-white: #ffffff;
    --brand-teal: #4abbb7;
    --brand-red: #d82435;
}

.proca-MuiButton-containedSecondary {display:none!important;}

body {
    background-color: var(--brand-black);
    color: var(--brand-white);
    font-family: 'Lato', sans-serif; 
    font-weight: 300;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, .btn {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.text-teal { color: var(--brand-teal) !important; }
.text-red { color: var(--brand-red) !important; }

/* --- Language Switcher --- */
.lang-switcher-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}
.lang-switcher-container .dropdown-toggle {
    background-color: var(--brand-teal);
    color: var(--brand-white);
    border: none;
    padding: 8px 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}
.lang-switcher-container .dropdown-menu {
    background-color: var(--brand-black);
    border: 1px solid var(--brand-teal);
}
.lang-switcher-container .dropdown-item {
    color: var(--brand-white);
    text-transform: uppercase;
}
.lang-switcher-container .dropdown-item:hover,
.lang-switcher-container .dropdown-item.active {
    background-color: var(--brand-teal);
    color: var(--brand-white);
}

/* --- Countdown --- */
.simply-countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.simply-countdown > .simply-section {
    background-color: rgba(255, 255, 255, 0.28);
    border: none; 
    padding: 10px 15px;
    margin: 5px 8px; 
    border-radius: 5px;
    text-align: center;
    min-width: 80px; 
}

.simply-amount {
    color: var(--brand-white); 
    font-size: 2.2em;
    font-weight: 700; 
    line-height: 1; 
    display: block;
}

.simply-word {
    color: var(--brand-white);
    font-size: 0.8em;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

.countdown-container {
    background-color: var(--brand-red);
    border-radius: 5px;
    width: fit-content;
    margin: 40px 0px;
    padding: 20px;
}

/* --- Buttons --- */
.btn-red {
    background-color: var(--brand-red);
    color: var(--brand-white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    letter-spacing: 0.5px;
    margin-top: 20px;
}
.btn-red:hover {
    background-color: #b01b2b;
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 36, 53, 0.4);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background-image: url('hero-bg.jpg'); 
    background-color: var(--brand-black); 
    background-size: cover;
    background-position: center;
    min-height: 100vh; 
    display: flex;
    align-items: center;
    padding: 40px 0; 
    overflow: hidden; 
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    width: 150px; 
    height: auto;
}

.hero-text-container {
    position: relative;
    z-index: 3; 
    padding-left: 20px; 
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: none;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
}

.text-highlight-teal {
    background-color: var(--brand-teal);
    padding: 0 8px;
    line-height: 1.5;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    color: var(--brand-white);
}
.text-highlight-red {
    background-color: var(--brand-red);
    padding: 0 8px;
    line-height: 1.5;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    color: var(--brand-white);
}

/* --- Widget Section --- */
.widget-section {
    background-color: #eaeaea; 
    padding: 60px 20px 0px;
    border-top: 1px solid #333;
}

.widget-container {
    background-color: white;
    color: var(--brand-black); 
    border-radius: 8px;
    padding: 10px;
    min-height: 600px; 
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* --- Tips section --- */
.tips-section {
    background-color: #eaeaea; 
}

.tips-intro-text {
    /* Makes the text slightly larger than the body default */
    font-size: 1.2rem; 
    font-weight: 400;
    line-height: 1.2;
}

.accordion-item {
    background-color: var(--brand-white); 
    border: 1px solid #ccc !important; 
    margin-bottom: 15px;
    border-radius: 8px; 
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background-color: var(--brand-white) !important;
    color: var(--brand-black) !important;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-white) !important; 
    background-color: var(--brand-teal) !important; 
    box-shadow: none;
    border-bottom: 1px solid var(--brand-teal);
}
.accordion-button:not(.collapsed) .text-teal {
    color: var(--brand-white) !important; 
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--brand-teal);
}

.accordion-body {
    background-color: var(--brand-white); 
    color: var(--brand-black); 
    padding: 20px;
    border-top: 1px dashed #ddd; 
}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
}
.accordion-body ul li {
    margin-bottom: 5px;
}

/* --- Carousel Section --- */
.carousel-section {
    background-color: #1a1a1a; 
    padding: 80px 0;
}
.carousel-image-frame {
    border: 8px solid white;
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.carousel-caption-custom {
    text-align: left;
    font-size: 1.2rem;
    padding-right: 2rem;
}
.carousel-caption-custom h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.carousel-control-prev, .carousel-control-next {
    position: relative; 
    width: auto;
    opacity: 1; 
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-image: none;
    color: var(--brand-teal); 
    font-size: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
}

.carousel-controls-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}

.carousel-indicators {
    position: relative; 
    margin: 0; 
}
.carousel-indicators [data-bs-target] {
    height: 12px;
    width: 12px;
    border-radius: 50%; 
    background-color: rgba(255, 255, 255, 0.4); 
    border: none;
    margin: 0 5px; 
    opacity: 1; 
    transition: background-color 0.3s;
}
.carousel-indicators [data-bs-target].active {
    background-color: var(--brand-teal);
}
.social-icon-img {
    height: 36px;
    width: 36px;
    margin: 0 5px;
    transition: opacity 0.3s;
    vertical-align: middle;
}
.social-icon-link {
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
}
.social-icon-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.social-icon-fa {
    font-size: 1.5rem;
    color: var(--brand-white);
    transition: color 0.3s;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-icon-link:hover .social-icon-fa {
    color: var(--brand-teal);
}

/* --- Footer --- */
footer {
    background-color: #111;
    padding: 60px 0;
    border-top: 1px solid #333;
}

.footer-link {
    color: var(--brand-teal);
    text-decoration: none;
    font-weight: 300;
}
.footer-link:hover { text-decoration: underline; }

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Responsive Tweaks --- */
@media (max-width: 991px) {
    .hero-section {
        min-height: 80vh; 
        padding-top: 350px; 
        background: 
            linear-gradient(
                to top,
                var(--brand-black) 35%,
                rgba(0, 0, 0, 0) 100%  
            ),
            url('hero-bg.jpg'); 
        background-position: center top, center top;
        background-size: 100% 100%, 100% auto;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
    
    .hero-content {
        text-align: left;
    }
    .hero-content .row {
        justify-content: center !important; 
    }
    .hero-text-container {
        text-align: left;
        padding-left: 0;
    }

    .hero-title { font-size: 4rem; }
    .hero-subtitle { font-size: 2rem; }
    .hero-info {
        font-style: italic;
        font-size: 1rem;
    }
    
    .btn-red { 
        width: auto; 
        text-align: center; 
    }
    
    .carousel-caption-custom { 
        text-align: center; 
        padding: 0 15px;
        margin-bottom: 30px; 
    }
} 

@media (min-width: 992px) {
    .hero-text-container {
        margin-left: auto; 
        padding-right: 50px; 
        text-align: left; 
    }
}