:root{
    --font-color: #b8a554;
    --bg-color: #0C1015;
    --bg-color-2: #14171F;
}

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

body {
    background-color: var(--bg-color);
    color: var(--font-color);
}

header {
    text-align: center;
    background-color: var(--bg-color-2);
}

header .container-fluid{
    color: var(--font-color);
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
}

.offset-md-4, .mb-3{
    margin-top: 1rem;
}

.img-section{
    min-height: 45rem;
    height: auto;
    width: 100%;
    padding: 0;
    background-image: url('/assets/background01.png');
    background-size: cover;
    transition: 2s linear;
}

.img-text{
    height: 40rem;
    color: #D3D3D3;
    text-shadow: 3px 3px #0C1015;
}

.display-1{
    margin-top: 4rem;
}

.section-1 {
    margin-top: 3.5rem;
    padding: 1rem;
}

.img-fluid{
    border-radius: 10px;
    max-height: 580px;
    max-width: 320px;
}

.carousel-control-prev, .carousel-control-next {
    color: var(--font-color);
}

.section-text {
    margin-right: 2rem;
    background-color: var(--bg-color-2);
    border-radius: 10px;
}

.section-text p {
    color: var(--font-color);
    font-family: "Saira", sans-serif;
    font-weight: 500;
    font-style: normal;
    padding-bottom: 1rem;
}

.section-1 h6 {
    font-family: "Iceberg", sans-serif;
}

.section-1 .btn {
    font-family: "Poppins", sans-serif;
    text-align: justify;
    margin-bottom: 1.5rem;
}

h1 {
    font-family: "Iceberg", sans-serif;
    font-weight: 400;
    font-style: normal;
}

p {
    font-weight: bold;
    text-align: justify;
}

.section-text a {
    color: var(--font-color);
    text-decoration: none;
}

.section-text a:hover{
    color: var(--bg-color-2);
}

.btn-outline-primary {
    color: var(--font-color);
    border-color: var(--font-color);
    font-family: "Saira", sans-serif;
    font-weight: 500;
    font-style: normal;
    transition: 0.3s linear;
}

.btn-outline-primary:hover {
    color: var(--bg-color);
    background-color: var(--font-color);
    border-color: var(--font-color);
}

.section-2 {
    margin-top: 2.5rem;
    background-color: var(--bg-color-2);
    border-radius: 10px;
    max-width: 480px;
    width: 100%; 
    margin: 2rem auto; 
    padding: 1rem;
}

.section-2 h6 {
    font-family: 'Iceberg';
}

.section-2 p {
    color: var(--font-color);
    font-family: "Saira", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: justify;
    padding: auto;
}


.section-2 .btn {
    font-family: "Poppins", sans-serif;
    transition: 0.3s linear;
}

.section-2 .btn:hover {
    color: var(--bg-color);
}

footer {
    text-align: center;
    margin-top: 1.5rem;
    font-family: "Saira", sans-serif;
    font-weight: bold;
    height: 100%;
    padding: 0.5rem;
    background-color: var(--bg-color-2);
    color: var(--font-color);
}

footer p {
    text-align: center;
    margin-top: 1rem;
}

footer a {
    color: var(--font-color);
    text-decoration: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .img-section {
        min-height: 30rem;
        background-position: center;
    }

    .img-fluid {
        height: auto;
        width: 100%;
    }

    .section-text {
        margin: 1rem;
    }

    .display-1 {
        font-size: 2.5rem;
    }

    .btn-outline-primary {
        font-size: 1rem;
    }

    .title-text {
        font-size: 1.5rem;
        padding: 1rem;
    }

    .carousel-inner {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .img-fluid {
        height: auto;
        width: 60%;
    }
}

.carousel-inner {
    max-height: 900px;
    overflow: hidden;
}