/* ************************
 		CUSTOM CSS 
 ************************ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap');

body {
    background: lightgray;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* Nav Section */
.custom-logo {
    width: 5rem;
	margin-left: 3rem;
	padding-top: 1rem;
}

.main-navigation ul li {
    margin-right: 2rem;
}

/* Hero Section Images Mobile version */
.hero-part {
    background-image: radial-gradient(circle, #000 50%, #001077);
    height: 100vh;
    overflow: hidden;
}

/* Hero Section Images Styles */
.hero-img {
    width: 100%;
    height: auto !important;
    position: absolute;
    bottom: -21rem;
}


/* Hero Section Text Styles */
.hero-card {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 2rem;
}
.hero-text {
    color: #FFB703 !important;    
    background: rgba(214, 40, 40, 0.7) !important;
    left: 50%;
    transform: translateX(-50%);
    top: 5%;
}

.darken-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* About Section Text Styles */
.info-part {
    background-color: #F0F0F0 !important;
    padding: 4rem 2rem;
    position: relative;
}
.about-text {    
    color: #333333 !important;
    z-index: 2; 
}
.redish-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(214, 40, 40, 0.3);
    z-index: 1;
}

/* Directors Section Text Styles */
.directors {
    background-color: #0000FF !important;
    color: #FFB703;
    padding: 4rem 2rem;
}

/* News Section Text Styles */
.news {
    background-color: #F0F0F0 !important;
    padding: 4rem 2rem;
}

.contact {
    background-color: #E5E5E5 !important;
    padding: 4rem 2rem;
}
.img-letter {
    width: 50%;
    height: auto;
}

/* Footer Section Text Styles */
.footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 1rem 0;
}

/* Go Top Button Styles */
.top-link {
    transition: all 0.25s ease-in-out;
    position: fixed;
    bottom: 2em;
    right: 2em;
    display: none; /* Hidden by default */
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 50%;
    padding: 0.5em;
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    background-color: #FFB703; /* Adjust color as needed */
    color: white;
    text-align: center;
    font-size: 1.5rem;
    z-index: 999999;
}

.top-link:hover {
    background-color: #333; /* Adjust hover color as needed */
}

.top-link.show {
    display: inline-flex;
}






/* Hero Section Images Responsive */
@media screen and (max-width: 576px) {
.custom-logo {
    width: 3rem;
	margin-left: 3rem;
	padding-top: 1rem;
}
    .hero-part {        
        height: 80vh;
        overflow: hidden;
    }
    .hero-images {
    position: relative;
    }
    .hero-img {
        width: 100%;
        height: auto !important;
        position: absolute;
        bottom: -12rem;
    }
    .hero-text {
        width: 90% !important;
        height: auto !important;
    }
    .card-title, .card-text {
        font-size: 1rem !important;
    }
}

@media screen and (min-width: 1200px ) and (max-width: 1399px) {
    .hero-img {
        width: 100%;
        height: auto !important;
        position: absolute;
        bottom: -39rem;
    }
}

@media screen and (min-width: 1400px ) {
    .hero-img {
        width: 100%;
        height: auto !important;
        position: absolute;
        bottom: -46rem;
    }
}

@media screen and (min-width: 1920px ) {
    .hero-img {
        width: 100%;
        height: auto !important;
        position: absolute;
        bottom: -70rem;
    }
}