@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
:root{
    --white: #fafafa;
    --background: #080807;
    --primary: #5f5a53;
    --secondary: #211f1c;
    --accent: #f29e55;
    --accent-b: #e4af84;
}

html{
    background-color: var(--background);
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scrollbar-color: var(--accent) var(--secondary)
  }

.accent-cl{
    color: var(--accent) !important;
}

h1{
    margin-top: 0.5em;
    margin-left: 1%;
    margin-right: 1%;
    color: var(--accent);
    font-size: 40px;
    font-weight: 600;
}

h2{
    margin-top: 0.5em;
    margin-left: 1%;
    margin-right: 1%;
    color: var(--accent);
    font-size: 30px;
    font-weight: 600;
}



p,
label{
    margin-top: 0.5em;
    margin-left: 1%;
    margin-right: 1%;
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
}

.container{
    display: flex;
    padding: 1em;
}

.container-fs{
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    scroll-behavior: smooth;
    height: 100vh;
}

.container-fs-2{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-size: cover;
    background-repeat: no-repeat;
}

.center{
    text-align: center;
    margin: 0px auto;
}

.hidden {
    display: none;
}

.row-half{
    float: left;
    width: 49.99999%;
}

.rows::before,
.rows::after{
    content: "";
    display: table;
    clear: both;
}

#fullpage-rh-1,
#fullpage-rh-2{
  justify-content: center;
  z-index: 1;
  padding: 5%;
  padding-top: 150px !important;
}

#fullpage-rh2-pad-null{
    padding-top: 0px !important;
}

.content{
    margin: 0 auto;
    padding: 2%;
    font-weight: 500;
    font-size: 20px;
    max-width: 1000px;
    border-radius: 15px;
}

.content-fs-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* --- active inactive a b ---*/
.inactive-a{
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    background-color: var(--background);
    padding: 2px 20px;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 600;
    transition: 200ms cubic-bezier(.65,.05,.36,1);
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .inactive-a:hover{
    color: var(--secondary);
    text-decoration: none;
    border-radius: 15px;
    background-color: var(--accent);
    padding: 2px 30px;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 600;
    transition: 200ms cubic-bezier(.65,.05,.36,1);
    margin-left: 0px;
    margin-right: 0px;
  }



/* --- HEADER --- */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background);
    color: var(--white);
    padding: 1em;
    width: 100%;
    position: fixed;
    z-index: 1;
}

.logo {
    height: 24px;
    width: auto;
}

.nav-links {
    list-style-type: none;
}

.nav-links ul {
    list-style-type: none;
}

.nav-links ul li {
    display: inline;
    margin-right: 20px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Style the burger menu for mobile */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    margin: 3px 0;
}

.burger-menu:hover > bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
}

/* Media query for mobile */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        align-items: flex-end; /* Align navigation links to the right */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        list-style-type: none;
        padding: 0;
    }

    .nav-links ul li {
        margin-bottom: 10px; /* Separate each link with margin */
    }

    .nav-links ul li a {
        text-decoration: none;
        text-align: center; /* Align each link to the right */
        width: 100%; /* Ensure each link takes up full width */
        display: block; /* Display each link on its own line */
    }
}



/* --- GALLERY --- */

.card {
    width: 500px;
    margin: 10px;
    padding: 10px;
    text-align: center;
    background-color: var(--secondary);
    border-radius: 30px;
}

.card img {
    max-width: 100%;
    border-radius: 30px;
}

.tags {
    margin-top: 10px;
    font-size: 12px;
    color: var(--white);
}

.card .title{
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.tag {
    padding: 2px 5px;
    margin: 0 2px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 3px;
}

.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    text-align: center;
    z-index: 10;
    transition: opacity 300ms cubic-bezier(.65,.05,.36,1);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
/* Style for the popup content */
.popup-content{
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    animation: scale-in 300ms cubic-bezier(.65,.05,.36,1);
    padding: 20px; /* Add padding to the popup content */
    border-radius: 30px;
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
}

/* Caption text */
#description{
    color: var(--white);
    background: var(--accent);
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 11; /* Place the caption above the popup */
}

/* Animation for scaling in the popup */
@keyframes scale-in {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
}