@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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    overflow-x: hidden;
    user-select: none;
}

body {
    margin: 0;
    padding: 0;
    /* font-family: 'Montserrat', sans-serif; */
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
    user-select: none;
    /* background-color: #fff; */
}

/* Custom Cursor Styles */
.cursor {
    width: 20px;
    height: 20px;
    background: #b44414;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.cursor.hover {
    transform: scale(2);
    background: rgba(255, 255, 255, 0.8);
}

/* Hide default cursor */
* {
    cursor: none;
}

/* 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: transparent;
    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;
}



/* Header Styles */
.e-collection-header {
    width: 100%;
    padding: 150px 0 80px;
    text-align: center;
    background-color: #ffffff;
}

.e-collection-header h1 {
    font-family: 'norman';
    font-size: 4rem;
    color: #000000;
    font-weight: normal;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Catalogs Container */
.catalogs-container {
    width: 90%;
    height: 60vh;
    /* max-width: 1200px; */
    margin: 0 auto 100px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Catalog Item */
.catalog-item {
    display: flex;
    align-items: center;
    gap: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.catalog-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Alternate layout for even items */
.catalog-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Catalog Image */
.catalog-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transition: transform 0.5s ease;
}

.catalog-image:hover {
    transform: translateY(-10px);
}

.catalog-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.catalog-image:hover img {
    transform: scale(1.05);
}


.catalog-info h2 {
    font-family: 'clash', sans-serif;
    font-size: 2.2rem;
    color: #000000;
    margin: 0 0 20px;
}

.catalog-info p {
    font-family: 'variable', sans-serif;
    font-size: 1.3rem;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 30px;
}

/* Download Button */
.download-btn {
    font-family: 'variable';
    letter-spacing: 5px;
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download-btn:hover {
    background-color: #1d1d1d;
    color: white;
    /* transform: translateY(-3px); */
}

.download-btn:hover::before {
    left: 100%;
}


/* 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;
}

/* 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) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .nav-links {
        display: none !important;
    }

}

@media (max-width: 485px) {

    .cursor {
        display: none;
    }

    * {
        cursor: auto;
        /* overflow: hidden; */
    }
}

/* Responsive Styles */

/* Mobile First: Base styles already set for mobile */

/* Small Tablets (≥600px) */
@media (min-width: 600px) {
    .e-collection-header h1 {
        font-size: 2.2rem;
    }

    .catalogs-container {
        width: 95%;
        gap: 40px;
    }

    .catalog-item {
        gap: 30px;
    }
}

/* Tablets (≥900px) */
@media (min-width: 900px) {
    .navbar {
        padding: 20px 40px;
    }

    .nav-logo {
        height: 40px;
        width: 130px;
    }

    .nav-links {
        display: flex !important;
        gap: 40px;
    }

    .hamburger {
        display: none !important;
    }

    .catalogs-container {
        width: 90%;
        gap: 60px;
    }

    .catalog-item {
        flex-direction: row;
        gap: 50px;
    }

    .catalog-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .catalog-image,
    .catalog-info {
        width: 50%;
        align-items: flex-start;
    }

}

/* Laptops/Desktops (≥1200px) */
@media (min-width: 1200px) {
    .e-collection-header h1 {
        font-size: 4rem;
    }

    .catalogs-container {
        max-width: 1200px;
        margin: 0 auto 100px;
    }

    .catalog-info h2 {
        font-size: 2.2rem;
    }

    .catalog-info p {
        font-size: 1.3rem;
    }

}

/* Large Monitors (≥1600px) */
@media (min-width: 1600px) {
    .catalogs-container {
        max-width: 1600px;
    }
}

/* Hamburger menu for mobile */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .nav-links {
        display: none !important;
    }
}

@media (max-width: 600px) {

    .navbar {
        display: flex;
        justify-content: space-between;
        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: transparent;
        background-color: #b44414;
    }

    .nav-logo {
        height: 40px;
        width: 130px;
    }

    .e-collection-header {
        width: 100%;
        padding: 150px 0 80px;
        text-align: center;
        background-color: #ffffff;
    }

    .e-collection-header h1 {
        font-family: 'norman';
        font-size: 2rem;
        color: #000000;
        font-weight: normal;
        letter-spacing: 1px;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease forwards 0.5s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .catalogs-container {
        width: 100%;
        height: 75vh;
        /* max-width: 1200px; */
        margin: 0px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 90px;
    }

    /* Catalog Item */
    .catalog-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .catalog-info {
        height: 40vh;
        /* flex: 0 0 60%; */
    }

    .catalog-info h2 {
        font-family: 'clash', sans-serif;
        font-size: 1.2rem;
        color: #000000;
        margin: 0 0 20px;
        letter-spacing: 1px;
    }

    .catalog-info p {
        width: 100%;
        font-family: 'variable', sans-serif;
        font-size: 1rem;
        color: #555555;
        line-height: 1.6;
        margin: 0 0 30px;
        letter-spacing: 1px;
    }

    .catalog-image {
        flex: 0 0 40%;
        position: relative;
        overflow: hidden;
        /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
        transition: transform 0.5s ease;
    }

    .cursor {
        display: none;
    }

    * {
        user-select: none;
        cursor: auto;
    }

    .download-btn{
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-bottom: 10px;
    }

}



/* 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;
    overflow: hidden;
}

.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 100PX;
    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;
    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: 100px;
}

.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: 0px;
    }


    /* 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 {
        display: flex;
        justify-content: start;
        align-items: start;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        text-align: start;
    }

    .copyright {
        padding: 0;
        margin: 0;
    }
}