@font-face {
    font-family: 'MADE Mirage'; /* Name for your font */
    src: url('/fonts/MADE Mirage Thin PERSONAL USE.otf') format('opentype'); /* Specify the format as 'opentype' */
}
@font-face {
    font-family: 'spectral'; /* Name for your font */
    src: url('/fonts/spectral.extralight.ttf') format('opentype'); /* Specify the format as 'opentype' */
}
@font-face {
    font-family: 'Swanky Special'; /* Name for your font */
    src: url('/fonts/Swanky Special.ttf') format('opentype'); /* Specify the format as 'opentype' */
}


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    
    overflow-x: hidden; 
   
    font-family: serif;

}
.top-bar {
    display: flex; /* Horizontal alignment */
    justify-content: space-between; /* Space between logo and hamburger menu */
    align-items: center; /* Vertically align items */
    padding: 10px 20px; /* Padding around the top bar */
    position: relative; /* Fixed at the top of the page */
    top: 0;
    width: 100%;
    
    z-index: 1000; /* Ensure it stays above other elements */
    
}




.hamburger-menu {
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 30px; /* Move the hamburger to the right side */
    z-index: 1000;
    display: flex;
    flex-direction: column; /* Stack the bars vertically */
    justify-content: space-between; /* Add space between the bars */
    height: 80px; /* Set the height to make the space for vertical stacking */
    font-size: 30px; /* Increase the font size of the icon */
    font-family: 'MADE Mirage';
    color: darkgray;
    position: absolute;
}



/* Navigation Menu Styles */
.menu {
    position: fixed;
    top: 0;
    right: -250px; /* Initially hidden off-screen to the right */
    width: 250px;
    height: 100%;
    background-color: #333;
    padding-top: 60px;
    transition: right 0.3s ease; /* Slide from right */
    z-index: 999;
}

/* Adjusting the alignment of menu items */
.menu ul {
    list-style: none;
    margin-top: 10px;
    text-align: center; /* Align text to the right */
    margin-right: 20px; /* Give some space from the right edge */
    font-family: 'MADE Mirage', serif;
}

.menu ul li {
    text-align: center;
    padding: 20px 0;
}

.submenu span{
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;

}

.menu ul li a {

    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
}

.menu ul li a:hover {
    background-color: #575757;
}



.submenu span:hover{
    background-color: #575757;
}

.menu .submenu {
    position: relative;
}

.menu .submenu .dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: -20px;
    background-color: #333;
    width: 200px;
    padding-top: 0;
}



.dropdown li {
    width: 100%;
}

.dropdown li a {
    padding: 5px 10px;  /* Reduced padding */
    color: white;
    display: block;
}





/* Disable Page Scroll when Menu is Open */
.no-scroll {
    overflow: hidden;
}

/* Desktop Styles (Hamburger Menu Always Visible) */
@media (min-width: 768px) {
    .hamburger-menu {
        display: block; /* Show hamburger icon */
        
    }

    .menu {
        position: fixed;
        top: 0;
        right: -250px; /* Keep menu hidden off-screen by default */
        width: 250px;
        height: 100%;
        background-color: #333;
        padding-top: 60px;
        transition: right 0.3s ease; /* Slide from right */
    }
}

@media (max-width: 768px) {
    
    .menu ul {
        
        
        margin-top: 0px;
        
    }
    
}





.logo img {
    
    object-fit: cover;
}

.responsive-logo {
    max-width: 100%;
    height: 80px;
    width: 210px;  /* Default width */
}

@media (max-width: 768px) {
    .responsive-logo {
        width: 150px;  /* Adjust for tablets and smaller screens */
    }
}

@media (max-width: 480px) {
    .responsive-logo {
        width: 85px;  /* Adjust for mobile devices */
    }
    
}




.mainimage img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

#image-container {
    width: 100%;
    height: 100vh;
    display: flex;
    object-fit: cover;
    margin-top: -7%;
    position: relative;
    overflow: hidden;
}

#image-container img {
    width: 100%;
    height: auto;
    display: none;
    object-position: bottom;
}

#image-container img.active {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

@media  (max-width: 1024px) {
    

    #image-container{
        margin-top: -11% !important;

    }

    
}

@media  (max-width: 768px) {
    /* For small screens, adjust the font size and the image layout */
    #overlay-text {
        font-size: 2.5rem;
    }

    #image-container{
        margin-top: -15% !important;;
        
    }

    .image-container img {
        width: 100%; /* Ensures images fill the container on smaller screens */
        
    }
}

@media  (max-width: 480px) {
    /* For very small screens, further reduce the text size */
    #overlay-text {
        font-size: 2rem;
    }

    #image-container{
        margin-top: -26% !important;;
        
    }

    .image-container img {
        width: 100%; /* Ensures images fill the container on smaller screens */
       
    }
}

.overlay {
    position: absolute;
    top: 80%;
    left: 45%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-family: Arial, sans-serif;
   text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 1;
    text-align: center;
    width: 80%;
    pointer-events: none;
    font-family: 'Swanky Special',sans-serif;
    font-size: 5.25rem;
    letter-spacing: 0.01em;
    line-height: 1.1em;
    
}



.about{
    margin-top: 10px;
    background-color: rgb(239, 229, 218);
    
    padding-bottom: 50px;
    font-family: 'spectral',sans-serif;
    color:gray;
    padding: 50px 20px;
    
}

.about h2{
    line-height:1.35em;
    text-align:center;
    margin-top: 0;
    letter-spacing:0.1em;
    
    
}

.about p{
    letter-spacing:normal;
    font-size:17px; 
    
    text-align:center;
    
}
.about span {
    display: block;
    word-wrap: break-word; /* Ensure text wraps correctly */
}

/* Small Screens (Phones) */
@media (max-width: 768px) {
    .about {
        padding: 30px 20px;
    }

    .about h2 {
        font-size: 26px;
    }

    .about p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center; /* Align text to the left for better readability */
    }
}

/* Extra Small Screens */
@media (max-width: 576px) {
    .about {
        padding: 20px 20px;
    }

    .about h2 {
        font-size: 22px;
    }

    .about p {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
    }
}

.extra-space {
    
    padding-top: 60px; /* Space above content */
    padding-bottom: 50px; /* Space below content */
    text-align: center;
    font-family: 'spectral',sans-serif;
}

.extra-space p {
    font-size: 17px;
    line-height: 1.4em;
    margin-left: 50px;
    margin-right: 50px;
}
@media (max-width: 992px) {
    .extra-space {
        padding: 30px 15px; /* Reduce padding for medium screens */
        font-size: 16px; /* Slightly smaller font size */
    }

    .extra-space p {
        margin-bottom: 15px; /* Reduce space between paragraphs */
    }
}

@media (max-width: 768px) {
    .extra-space {
        padding: 20px 10px; /* Further reduce padding for smaller screens */
        
    }

    .extra-space p {
        text-align: center; /* Change alignment to left for small screens */
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .extra-space {
        padding: 15px 5px; /* Minimal padding for very small devices */
        
    }
    

    .extra-space p {
        margin-bottom: 10px; /* Minimal spacing between paragraphs */
        font-size: small;
    }
}


/* Center the gallery section */
.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh;   Makes the container take full viewport height */
    margin: 0 auto;
    margin-top: 70px;
    padding-top: 20px; /* Space above content */
    
}

/* Ensure the carousel is responsive */
#myCarousel {
    width: 65%;  /* Adjust the width as needed */
    max-width: 1200px;  /* Maximum width of the carousel */
}

/* Optional: Style the carousel caption */
.carousel-caption h3 {
    font-family: 'MADE Mirage', sans-serif;
    font-size: 1.5em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Style for the carousel indicators */
.carousel-indicators li {
    background-color: #fff;
}
/* General Carousel Styles */
.carousel-inner img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 10%;
    right: 10%;
    /* background: rgba(0, 0, 0, 0.5);  Semi-transparent background */
    padding: 10px 20px;
    color: white;
    border-radius: 5px;

}

/* Responsive Styles */
@media (max-width: 1200px) {
    .carousel-caption {
        font-size: 16px; /* Slightly smaller text for medium screens */
        padding: 8px 16px;
    }
}

@media (max-width: 992px) {
    .carousel-caption {
        font-size: 14px; /* Smaller text for tablets */
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {

    #myCarousel {
        width: 80%;
    }

    .carousel-inner img {
        height: 300px; /* Adjust image height for smaller screens */
    }

    .carousel-caption {
        font-size: 12px;
        padding: 4px 8px;
    }

   /* .carousel .left.carousel-control,
    .carousel .right.carousel-control {
        display: none; /* Hide navigation controls on very small screens 
    }*/
}

@media (max-width: 576px) {
    .gallery{
        padding-top: 0;
    }
    #myCarousel {
        width: 90%;}
    .carousel-inner img {
        height: 400px; /* Further reduce image height */
    }

    .carousel-caption {
        font-size: 8px;
        padding: 2px 4px;
    }
}


.about-section {
    padding: 50px;
    background-color: #f9f9f9;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.about-image img {
   /* width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    flex: 1 1 40%;
    max-width: 400px;
}

.about-text {
    flex: 1;
    text-align: center;
    padding: 20px;
    font-family: 'MADE Mirage', sans-serif;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: 'spectral';
}



@media (max-width: 480px) {
    .about-container {
        flex-direction: column;
    }
    .about-text {
        flex: 1 1 100%;
        
        text-align: center;
    }

    .about-text {
        padding: 5px;
    }
    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1.4rem;
    }
    .about-section{
        padding: 50px 0px;
    }
}

.lastimage {
    /*  width: 980px; Fix the width to 980px */
    height: 60vh; /* Set a fixed height */
    overflow: hidden; /* Ensure the cropped portion is hidden */
}

.lastimage img {
    width: 100%;  /* Keep the image width at 100% of the container */
    height: 145%; /* Increase the image height to create a vertical crop */
    object-fit: cover; /* Maintain aspect ratio and crop the image */
    object-position: center bottom; /* Center the image horizontally and align it to the bottom vertically */
}

/* Basic Styles */
footer {
    background-color: rgb(239, 229, 218);
    padding: 20px 0;
    overflow: hidden; /* Prevent overflow */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    max-width: 100%; /* Ensure container doesn't exceed viewport width */
    box-sizing: border-box; /* Includes padding and border in width calculation */
}

.footer-column {
    flex: 1;
    text-align: left;
    margin: 10px;
    min-width: 250px;  /* Ensure columns do not shrink too much */
    max-width: 100%; /* Prevent columns from overflowing */
    box-sizing: border-box; /* Include padding in width calculation */
}

.footer-column h3 {
    font-size: 18px;
    color: gray;
    margin-bottom: 10px;
    border-bottom: double;
    display: inline-block;
    padding-bottom: 3px;
}

.footer-column span {
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: gray;
    font-size: 16px;
    line-height: 1.8;
}

.footer-column a {
    text-decoration: none;
    color: gray;
}

.footer-column a:hover {
    color: #000;
}

.footer-column .social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.footer-column img {
    width: 30px;
    height: 30px;
}

hr {
    border: none;
    border-top: 1px solid gray;
    margin: 20px;
}

#footer-container {
    scroll-margin-top: 20px;  /* Optional offset to avoid clipping */
}

/* Large Devices / Desktop */
@media (min-width: 1025px) {
    .footer-container {
        flex-direction: row; /* Keep columns side by side */
        justify-content: space-between;
    }

    .footer-column {
        text-align: left;
        margin: 20px 0;
        width: 22%; /* Adjust column width */
    }

    .footer-column.logo img {
        width: 300px; /* Adjust logo size */
    }

    .footer-column .social-icons {
        justify-content: flex-start;
        gap: 10px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center align the columns */
    }

    .footer-column {
        text-align: center;
        margin: 20px 0;
        width: 100%; /* Make columns take full width */
    }

    .footer-column.logo img {
        width: 250px; /* Adjust logo size */
    }

    .footer-column ul {
        padding-left: 0;
    }

    .footer-column .social-icons {
        justify-content: center;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center align the columns */
    }

    .footer-column {
        text-align: center;
        margin: 20px 0;
        width: 100%; /* Make columns take full width */
    }

    .footer-column.logo img {
        width: 250px; /* Adjust logo size */
    }

    .footer-column ul {
        padding-left: 0;
    }

    .footer-column .social-icons {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center align the columns */
    }

    .footer-column {
        text-align: center;
        margin: 20px 0;
        width: 100%; /* Make columns take full width */
    }

    .footer-column.logo img {
        width: 200px; /* Adjust logo size */
    }

    .footer-column ul {
        padding-left: 0;
    }

    .footer-column .social-icons {
        justify-content: center;
        gap: 15px;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .footer-column.logo img {
        width: 150px;  /* Smaller size for Retina screens */
        height: auto;
    }
}

