:root {
    --primary-bg: #fff;
    --yellow: #f3c77c;
    --black-bg: #000000;
    --white-bg: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.5);
}

@font-face {
    font-family: Adler;
    src: url(Adler.ttf);
}

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

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: var(--black-bg);
    color: var(--primary-bg);
    font-family: Arial, sans-serif;
}

/* Hide scrollbar */
::-webkit-scrollbar {
    display: none;
}

h1 {
    font-family: Adler;
}



/* Header styles */
header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2; /* Ensure header is above other content */
}

.hamburger {
    display: none;
}

.hamburger-box {
    width: 30px;
}

.hamburger-inner::before {
    display: none;
}

.hamburger-inner,
.hamburger-inner::after {
    background: var(--primary-bg) !important;
    border-radius: 0 !important;
    height: 2px;
    width: 30px;
    transition-duration: 0.3s !important;
    transition-timing-function: ease-in-out !important;
}

#menu {
    display: flex;
    flex-direction: row;
    gap: 5%;
    align-items: center;
    justify-content: right;
    list-style: none;
    width: 100%;
    padding-inline: 20px;
    margin-top: 1em;
    position: relative;
    font-family: Adler;
}

#menu li {
    position: relative;
}

#menu li a {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: var(--primary-bg);
    overflow: hidden;
}

#menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white-bg);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.1s ease;
}

#menu li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.link-text {
    position: relative;
    z-index: 1;
}

#responsive_menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: var(--black-bg);
    padding: 24px;
    z-index: 99;
}

#responsive_menu li {
    margin-block: 12px;
}

#responsive_menu .link {
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    color: var(--primary-bg);
    font-size: clamp(20px, 12.5vw, 50px);
    font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 1024px) {
    #menu {
        display: none;
    }

    .hamburger {
        display: inline-block;
    }

    #responsive_menu {
        display: block;
    }
}

/* Slider Styles */
.vertical-slider-container {
    position: relative; /* Fix the position so it doesn’t scroll */
    width: 50%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--black-bg);
    box-sizing: border-box;
    z-index: 1; /* Updated z-index */
    margin-left: 45em;
}

.vertical-slider {
    display: flex;
    flex-direction: column;
    height: 400vh; /* Total height based on number of slides */
}

/*hover effect*/
/* Image hover effect styles */
.slide {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
}

.slide img {
    height: 80%; 
    width: 98%;
    max-width: 100%;
    object-fit: cover;
}

.popup-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20%; /* Adjusted width for smaller popup */
    object-fit: contain;
    z-index: 10;
    transition: transform 0.3s ease;
}

.slide:hover .popup-image {
    transform: translate(-50%, -59%) scale(.70);
}

.slide-content {
    font-family: Adler, serif;
    color: var(--white-bg);
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

.slide-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.slide-content p {
    font-family: 'Arial', sans-serif;
    font-size: 1em;
    color: #d3d3d3; /* Light gray color */
    border-bottom: 1px solid #d3d3d3; /* Thin light gray line */
    padding-bottom: 10px; /* Space between text and line */
    margin-bottom: 10px; /* Space below the line */
}

/* Left Info */
.left-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 30%;
    color: var(--primary-bg);
    z-index: 3;
}

.left-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: Adler, serif;
}

.left-content p {
    font-size: 1.2em;
    line-height: 1.5em;
}

/* Footer Styles */
footer {
    background-color: var(--black-bg);
    color: var(--primary-bg);
    padding: 2em 0;
    font-family: LiberationSans, sans-serif;
    margin-top: -10em;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10em;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 0 1em;
}

.footer-section h2 {
    border-bottom: 2px solid var(--white-bg);
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    font-family: Adler, serif;
    color: var(--primary-bg); /* Ensure the heading is also white */
}

.social-links {
    list-style: none;
    display: flex;
    gap: 1em;
    padding: 0;
    margin: 0;
}

.social-links li {
    display: inline;
    margin-left: 2em;
}


.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover box-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.social-icon img:hover {
    opacity: 0.8;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    font-family: Adler;
    margin-left: 2em;
    line-height: 1.4em;
}

.footer-nav a {
    color: var(--primary-bg); /* Ensure all links are white */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for color and transform */
}

.footer-nav a:hover {
    color: var(--yellow); /* Change color on hover */
    transform: translateY(-2px); /* Slight move up on hover */
}

.footer-bottom {
    text-align: center;
    padding: 1em 0;
    background-color: var(--black-bg);
    color: var(--primary-bg); /* Ensure the bottom text is also white */
    border-top: 1px solid var(--white-bg);
    font-size: 0.9em;
    margin-top: 1em;
    margin-bottom: -8em;
}

.footer-bottom p{
    font-family: Adler;
    font-size: .50em;
}
