* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

@font-face {
    font-family: 'clash';
    src: url('ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Regular.otf');
}

@font-face {
    font-family: 'norman';
    src: url('fonnts.com-Norman-.otf');
}

@font-face {
    font-family: 'variable';
    src: url('ClashDisplay_Complete/Fonts/TTF/ClashDisplay-Variable.ttf');
}

body {
    /* font-family: Arial, sans-serif; */
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-color: #ffffff; */
    overflow-x: hidden;
    cursor: none;

}

/* Custom Cursor Styles */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #b44414;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    background-color: #b44414;
    z-index: 9999;
    transition: transform 0.2s ease;
    margin: -10px;
}


.cursor::after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    gap: 60px;
    top: 0;
    width: 100%;
    z-index: 100;
    color: white;
    transition: transform 0.4s ease, background-color 0.3s ease;
    background-color: #b44414;
}

.nav-links {
    display: flex;
    gap: 60px;
}

/* Add a class for hiding navbar */
.navbar--hidden {
    transform: translateY(-100%);
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'variable';
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}


.nav-logo {
    height: 50px;
    width: auto;
}

.page-1 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 90vw;
    margin-top: 10rem;
}

.tile-container {
    /* margin-top: 9rem; */
    width: 90vw;
    height: 55vh;
    display: flex;
    flex-direction: row;
    align-items: start;
    padding: 20px;
    justify-content: space-evenly;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.tile-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.tile-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tile-row img {
    width: 200px;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tile-images img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* .tile-info {
    margin-left: 20px;
} */

.tile-info h1 {
    font-family: 'norman';
    font-weight: 500;
    font-size: 4rem;
    margin-bottom: 10px;
}

.tile-info p {
    font-family: 'variable';
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 10px 0;
}


.room-image-section {
    width: 100vw;
    height: 130vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
}

.room-bg-img {
    width: 65vw;
    height: 105vh;
    object-fit: cover;
}


.back-button-container {
    padding: 20px;
    position: relative;
    z-index: 10;
}

.back-button {
    font-family: 'variable';
    font-weight: 300;
    background: none;
    color: #333;
    padding: 12px 30px;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: none;
    transition: all 0.3s ease;
    border: 1px solid #333;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

.back-button:hover {
    font-weight: 300;
    font-family: 'variable';
    background: #000000;
    color: white;
    text-decoration: none;
    border: 1px solid #333;
    /* border: none; */
}

/* Mobile Navigation Styles */
.hamburger {
    display: none;
    flex-direction: column;
    /* cursor: pointer; */
    z-index: 1002;
}

.hamburger div {
    width: 30px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.4s;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #b44414;
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    display: flex;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    /* cursor: pointer; */
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mobile-menu-links li {
    margin: 30px 0;
}

.mobile-menu-links a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'variable', serif;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1024px) {
    .tile-container {
        width: 100%;
        flex-direction: column;
        height: 250vh;
        align-items: center;
    }

    .tile-images {
        width: 100%;
        height: 200vh;

        overflow-x: auto;
        padding: 0px;
    }

    .tile-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 5px;
    }

    .tile-row img {
        width: 150px;
        height: 300px;
        flex-shrink: 0;
    }

    .tile-info {
        text-align: center;
        margin-top: 20px;
    }

    .tile-info h1 {
        font-size: 3rem;
    }

    .room-bg-img {
        width: 90vw;
        height: auto;
    }
}

/* Animation for mobile menu */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive: Show hamburger on mobile, hide nav links */
@media (max-width: 900px) {
    body {
        width: 100%;
        height: auto;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        cursor: auto;
    }

    .cursor {
        display: none;
    }

    * {
        overflow-x: hidden;
        /* cursor: none; */

    }


    /* Mobile Responsive Styles */
    @media screen and (max-width: 768px) {
        .navbar {
            width: 100vw;
            padding: 20px 20px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        .hamburger {
            display: flex;
            /* position: absolute;
        right: 30px;
        top: 30px; */
        }

        .nav-links {
            display: none !important;
        }

        .nav-links.active {
            width: 100%;
            height: 50vh;
            display: flex;
            justify-content: center;
            align-items: center;
            /* margin: 15px 0; */
        }

        .nav-link {
            display: flex;
            justify-content: center;
            align-items: center;
            /* margin: 15px 0; */
            font-size: 1rem;
        }

        .nav-logo {
            height: 40px;
        }

        .hamburger div {
            width: 30px;
            height: 2px;
            background-color: white;
            margin: 3px 0PX;
            transition: all 0.3s ease;
        }

        .hamburger {
            display: flex;
            position: absolute;
            right: 30px;
            top: 30px;
        }

        .logo {
            /* margin: 0 auto; */
        }

        .room-image-section {
            width: 100%;
            height: 60vh;
        }
    }
}

/* Footer Styles */
.footer-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: #B44414;
    color: #ffffff;
    padding: 60px 80px;
    width: 100%;
    font-family: 'variable', sans-serif;
}

.footer-container {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    width: 90vw;
}

.footer-logo-section {
    flex: 100%;
    margin-bottom: 40px;
    max-width: 550px;
    /* margin-right: 50px; */
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-family: 'variable';
    /* width: 80%; */
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-social {
    width: 90vw;
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #B44414;
}

.footer-links-section {
    display: flex;
    /* gap: 20px; */
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links-column {
    /* flex: 0 0 calc(33.333% - 50px); */
    width: 550px;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 20px;
    padding-top: 0px;
}

.footer-column-title {
    font-family: 'clash';
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #B44414;
}

.footerlink {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.footer-links {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact-info li {
    max-width: 100%;
    letter-spacing: 2px;
    margin-bottom: 0.875rem;
    cursor: none;
}

.footer-links a {
    width: 100%;
    white-space: nowrap;
    font-family: 'variable';
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: none;
}

.footer-links a:hover {
    opacity: 1;
    color: #000000;
    /* padding-left: 5px; */
}

.footer-contact-info li {
    font-family: 'variable';
    font-size: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact-info i {
    color: #B44414;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100vw;
    /* margin: 0 auto; */
}

.copyright {
    align-items: start;
    font-family: 'variable';
    font-size: 1rem;
    letter-spacing: 2px;
    margin-left: 100px;
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 1rem;
    font-family: variable;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    margin-right: 200px;
}

.footer-bottom-links a:hover {
    opacity: 1;
}



/* Responsive Footer */
@media only screen and (max-width: 992px) {


    .footer-column-title {
        overflow: hidden;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-logo-section {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .footer-links-section {
        width: 100%;

    }

    .footer-links-column {
        flex: 0 0 calc(50% - 15px);
    }
}

@media only screen and (max-width: 768px) {
    .footer-contact-info li {
        font-size: 1rem;
    }

    .footer-links-column {
        flex: 0 0 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        padding: 20px;
    }


    /* Footer Styles */
    .footer-container {
        /* padding: 40px 20px; */
    }

    .footer-logo-section {
        /* text-align: center; */
        margin-bottom: 30px;
    }

    .footer-description {
        font-size: 1rem;
    }

    .footer-links {
        padding-bottom: 10px;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-links-section {
        flex-direction: column;
        /* gap: 30px; */
    }

    .footer-links-column {
        /* width: 100%; */
        /* text-align: center; */
        padding: 0%;
    }

    .footer-bottom-links a {
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .copyright {
        padding: 0;
        margin: 0;
    }
}