*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 100%;
}

:root {
    --primary-color: white;
    --secondary-color: black;
    --menu-color: #9A9A9A;
}

body {
    font-family: "komet", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

@media (max-width: 992px){
    :root{
        font-size: 15px;
    }
}

@media (max-width: 576px){
    :root{
        font-size: 14px;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

/* +++++++++++++++++++++++++   Splash screen styles +++++++++++++++++++++++++ */

.TF{
    font-size: 2.5rem;
    color:white;
}

#splash-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it covers other content */
    opacity: 1;
    transition: opacity 1s ease; /* Add transition for fade out */
  }
  
  #splash-screen.hidden {
    opacity: 0;
    pointer-events: none; /* Prevent interactions when hidden */
  }
  
  #splash-screen img {
    width: 150px; /* Adjust the size of the logo as needed */
  }
  
  /* Main content styles */
  #main-content {
    opacity: 0;
    display: block; /* Show the main content initially, but hidden */
    text-align: center;
    padding: 20px;
    transition: opacity 1s ease; /* Add transition for fade in */
  }
  
  #main-content.visible {
    opacity: 1;
  }

/* +++++++++++++++++++++++++   GRID   +++++++++++++++++++++++++ */ 

.container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.row {
    --bs-gutter-x: 1rem
}

@media (max-width: 576px){

    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
        
    }
    .row {
        --bs-gutter-x: 1rem
    }
}

/* +++++++++++++++++++++++++   HEADER   +++++++++++++++++++++++++ */ 

header {
    
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    height: 5rem;
    padding: 0 2rem;
    font-size: 2.5rem;
    border-bottom: 1px solid var(--primary-color);
    z-index: 100;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin-left: 1.5rem;
    transition: border 0.1s;
}

header nav ul li a:hover {
    border-bottom: 2px solid var(--primary-color);
}

@media (max-width: 576px){

    header {
        font-size: 1.5rem;
    }
}

/* +++++++++++++++++++++++++   WORKS   +++++++++++++++++++++++++ */ 

main{
    margin-top: 5rem;
    min-height: calc(100vh - 15rem);
}


main.about {
    margin-top: 11rem;
    text-align: center;
}

main.works {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

main nav ul {
    list-style: none;
}

main nav ul li {
    margin-top: 2.2rem;
    font-size: 2rem;
}

@media (max-width: 576px){

    main nav ul li {
        margin-top: 2.2rem;
        font-size: 1.5rem;
    }
}

main nav ul li a {
    transition: border 0.1s;
    color: var(--menu-color);
}

main nav ul li a:hover {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}


/* +++++++++++++++++++++++++   HOME   +++++++++++++++++++++++++ */

.home-slider{
    height: calc(100vh - 5.5rem);
}


.home-slider-item{
    height: calc(100vh - 5.5rem);
    background-position: center;
    background-size: cover;
}

@media (max-width: 992px){

    .home-slider-item{
        height: calc(100vh - 10rem);
    }
}


@media (max-width: 576px){

    .home-slider-item{
        height: calc(100vh - 10rem);
    }
} 


/* +++++++++++++++++++++++++   ABOUT   +++++++++++++++++++++++++ */ 

.about {
    font-family: "komet", sans-serif;
    font-weight: 500;
    font-style: normal;
    
}

.about-top {
    margin-top: 2rem;
}

.about-top-logo {
    font-size: 2.5rem;
    font-weight: 800;
}

.about-top-location {
    font-size: 1.5rem;
    margin-top: 1.4rem;
}

.about-bottom {
    margin-top: 5rem;
}

.about-bottom-tag {
    margin-top: 12.4rem;
    font-size: 1.5rem;
}

.about-bottom-description {
    margin-top: 3.3rem;
    font-size: 1.25rem;
    margin-bottom: 6rem;
}

@media (max-width: 576px){
    .about-bottom-description {
        margin-top: 3.3rem;
        font-size: 0.85rem;
        margin-bottom: 6rem;
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

/* +++++++++++++++++++++++++   SINGLE   +++++++++++++++++++++++++ */

.single {
    margin-bottom: 2rem ;
    text-align: center;
}

.single .single-image {
    margin-bottom: 1.5rem;
}

.single ul{
    list-style: none;
} 

.single .single-title {
    font-size: 1.5rem;
    color: var(--menu-color);
    line-height: 8rem;
    margin-bottom: 0.5rem;
}

.single .single-text {
    font-weight: 500;
    font-size: 1rem;
}

.single-videos{
    margin-top: 1rem;
}


.single-images{
    list-style: none;
    margin-top: 4rem;
}


.single-image + .single-image{
    margin-top: 1rem;
}

.single-image img{
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 576px){

    .single .single-title {
        line-height: 1rem;
        margin-top: 2rem;
    }

    .single .single-text {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .single-images {
        margin-top: 2rem;
    }
        
}

/* +++++++++++++++++++++++++   FOOTER   +++++++++++++++++++++++++ */

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    height: 3rem;
}

footer nav ul{
    display: flex;
    align-items: center;
    list-style: none;
}

footer nav ul li{
    margin-left: 1.5rem;
    list-style: none;
    text-align: center;
}

footer nav ul li img{
    display: block;
    width: 1.85rem;
    height: 1.85rem;
    transition: border 0.1s;
}

footer nav ul li img:hover {
    border-bottom: 2px solid var(--primary-color);
    width: 2.5rem;
    height: 2.5rem;
}
