* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@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');
}


/* Custom Cursor Styles */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    background-color: #000000;
    z-index: 9999;
    transition: transform 0.2s ease;
    margin: -10px;
}


.cursor::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    /* mix-blend-mode: difference;  */
    transform: translate(-50%, -50%);
    z-index: 9999;
}

body {
    cursor: none;
    user-select: none;
    text-decoration: none;
}

/* Hide cursor on clickable elements */
a,
button {
    cursor: none;
}

body {
    height: auto;
    width: 100vw;
    background-color: #ffffff;
    overflow-X: hidden;
}

.main {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
}

/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    z-index: 10000;
    padding: 20px;
}

.logo-container {
    margin-bottom: 50px;
    opacity: 0;
    /* Start with logo invisible */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-logo {
    max-width: 80%;
    height: auto;
}

.loader-progress-container {
    width: 80%;
    max-width: 300px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background-color: #B44414;
    /* Baldosa Ceramica orange color */
    border-radius: 2px;
}

.loader-percentage {
    font-family: variable;
    font-size: 18px;
    color: #B44414;
    font-weight: 500;
}

.loader-overlay {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #B44414;
    z-index: 999;
}

/* Add this after the existing loader-overlay styles */
.loader-tiles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader-tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    animation: tileRotate 3s infinite ease-in-out;
}

/* @keyframes tileRotate {
    0% {
        transform: rotate(0deg) scale(0.8);
    }

    50% {
        transform: rotate(180deg) scale(1);
    }

    100% {
        transform: rotate(360deg) scale(0.8);
    }
} */

/* Mobile Devices (portrait phones) */
@media only screen and (max-width: 768px) {
    body {
        width: 100vw;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .slide-description {
        font-size: 16px;
    }

    .slider-nav {
        bottom: 20px;
        right: 20px;
    }

    .collection-section {
        padding: 60px 20px;
    }

    .collection-container {
        flex-direction: column;
        align-items: center;
    }

    .collection-item {
        width: 100%;
        max-width: 400px;
    }

    .collection-image-container {
        height: 300px;
    }
}

/* Tablets and small laptops */
@media only screen and (min-width: 769px) and (max-width: 992px) {
    .slide-title {
        font-size: 48px;
    }

    .nav-links {
        gap: 15px;
    }

    .collection-container {
        flex-wrap: wrap;
    }

    .collection-item {
        flex: 0 0 calc(50% - 15px);
    }

    .collection-title {
        font-size: 4rem;
    }
}

/* Large laptops and desktops */
@media only screen and (min-width: 993px) {
    .company-logo {
        max-width: 300px;
    }

    .loader-progress-container {
        width: 300px;
    }
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    gap: 60px;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    color: white;
    transition: transform 0.4s ease, background-color 0.3s ease;
    background-color: #b44414;
}

.navbar.navbar-transparent {
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.3s, box-shadow 0.3s;
}

.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;
}

/* Mobile Styles */
@media only screen and (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-logo {
        max-width: 130px;
        height: 40px;
    }
}

/* Tablet Styles */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .nav-logo {
        width: 110px;
    }
}

/* Swiper Slider Styles */
.swiper-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-image .overlay {
    animation: none !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    background-color: rgba(0, 0, 0);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 30%;
    right: 30%;
    /* width: auto; */
    transform: translateY(-50%);
    color: white;
    /* max-width: 600px; */
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.slide-title {
    font-family: 'norman';
    font-size: 5rem;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
}

.slide-description {
    font-family: 'variable';
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.explore-btn {
    font-family: 'variable';
    border-radius: 27px;
    letter-spacing: 7px;
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 0.880rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.explore-btn:hover {
    background-color: white;
    color: #333;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    z-index: 10;
}

.slider-counter {
    gap: 1rem;
    font-family: 'variable';
    font-size: 18px;
}

.total-slides {
    font-family: 'variable';
    font-size: 18px;
}

.current-slide {
    font-family: 'variable';
    font-weight: bold;
}

.slider-arrows {
    display: flex;
    gap: 15px;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    /* cursor: pointer; */
    transition: opacity 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    color: #B44414;
    opacity: 1;
}

/* Media Queries for Responsive Design */

/* Mobile Devices (portrait phones) */
@media only screen and (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #B44414;
        padding: 20px 20px;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .nav-links {
        display: flex;
    }

    .nav-link {
        font-size: 1rem;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .explore-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .slide-description {
        font-size: 16px;
    }

    .slider-nav {
        bottom: 110px;
        right: 20px;
    }

    .collection-section {
        padding: 60px 20px;
    }

    .collection-container {
        flex-direction: column;
        align-items: center;
    }

    .collection-item {
        width: 100%;
        max-width: 400px;
    }

    .collection-image-container {
        height: 300px;
    }
}

.background-line {
    width: 600px;
    height: 9000px;
    border: 1px solid #D1D1D1;
    position: absolute;
    left: 35%;
    z-index: -5;
    top: 0;
}


h1 {
    margin-bottom: 20px;
    color: #333;
}

/* About Section Styles */


.about-container {
    width: 100vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
    margin-top: 80px;
}

.wrapper {
    max-width: 1070px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
}

.animate {
    font-family: 'variable';
    max-width: 1070px;
    color: #1d1d1d;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 3.2rem;
    transition: color 0.5s ease;
}

.section-title.color-change {
    color: #ff6b00;
    /* Color to change to - using your brand orange color */
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-right .about-text {
    will-change: opacity, transform;
    /* Initial state will be set by GSAP */
}

.about-text {
    font-family: 'variable';
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: black;
    font-weight: 300;
}

.about-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;
}

/* close  */

.right-image {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: flex-end;
    /* padding: 0 40px; */
    margin-top: 10px;
}

.image-container {
    width: 50%;
    height: 100%;
    overflow: hidden;
    margin-right: 3%;

}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 1200px) {
    .right-image {
        padding: 0 30px;
    }
}

@media screen and (max-width: 992px) {
    .image-container {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .right-image {
        height: 400px;
        margin-top: 60px;
    }

    .image-container {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .right-image {
        height: 300px;
        margin-top: 100px;
        padding: 0 20px;
    }

    .cursor {
        display: none;
    }

    body {
        cursor: auto;
    }
}


/* Collection Section Styles */
.collection-section {
    padding: 50px 50px;
    overflow: hidden;
}

.collection-title {
    font-family: 'norman';
    font-size: 5rem;
    color: #1D1D1D;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.collection-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.collection-item {
    text-decoration: none;
    flex: 1;
    min-width: 300px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
}

.collection-image-container {
    width: 100%;
    height: 800px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin-bottom: 15px;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover .collection-image {
    transform: scale(1.05);
}

.collection-info {
    text-decoration: none !important;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.collection-number {
    font-family: 'variable';
    font-size: 1.2rem;
    color: #1D1D1D;
    text-decoration: none;
}

.collection-name {
    font-family: 'variable';
    font-size: 1.5rem;
    color: #1D1D1D;
    font-weight: normal;
    text-decoration: none;
    /* white-space: nowrap; */
}


.collection-item:hover .collection-number {
    color: #B44414;

}

@media only screen and (max-width: 768px) {
    .collection-section {
        padding: 60px 20px;
    }

    .collection-title {
        font-size: 3rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .collection-container {
        flex-direction: column;
        align-items: center;
    }

    .collection-item {
        width: 100%;
        max-width: 400px;
    }

    .collection-image-container {
        height: 300px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .collection-container {
        flex-wrap: wrap;
    }

    .collection-item {
        flex: 0 0 calc(50% - 15px);
    }

    .collection-title {
        font-size: 4rem;
    }
}

.container {
    width: 100vw;
    position: relative;
    height: 280vh;
    /* Enough height to allow scrolling */
}

.best-sellers {
    position: relative;
    height: 260vh;
    /* enough height to scroll */
    padding-top: 5vh;
    /* gives room before sticky kicks in */
}

.sticky-title {
    position: sticky;
    top: 30%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 100;
    padding: 1rem 0;
    mix-blend-mode: difference;
    color: #ffffff;
}


.sticky-title h1 {
    font-weight: 300;
    font-size: 5rem;
    font-family: 'norman';
    color: #ffffff;
}

.tiles {
    position: relative;
    width: 100%;
    height: 100%;
}

.tile {
    position: absolute;
    width: 200px;
    text-align: start;
    opacity: 0;
}

.tile img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tile p {
    font-family: 'variable';
    font-size: 1.2rem;
    padding-top: 10px;
}

.tile p:hover {
    color: #B44414;
    font-family: 'variable';
    font-size: 1.2rem;
    padding-top: 10px;
}

/* Manually stagger positioning (adjust as needed) */
.tile:nth-child(1) {
    top: 20vh;
    left: 60%;
}

.tile:nth-child(2) {
    top: 60vh;
    left: 30%;
}

.tile:nth-child(3) {
    top: 120vh;
    left: 60%;
}

.tile:nth-child(4) {
    top: 160vh;
    left: 30%;
}

/* NEW SECTION */
.new-section {
    width: 90%;
    height: 53rem;
    background-image: url(Discover\ 2.jpg);
    background-size: cover;
    object-fit: cover;
    padding: 50px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    justify-content: center;
}

.new-section-content {
    text-align: center;
    text-decoration: none;
}

.new-section-title {
    font-size: 5rem;
    max-width: 600px;
    line-height: 6rem;
    font-family: 'norman';
    /* margin-bottom: 5px; */
    color: #ffffff;
}

.new-section-button {
    font-family: 'variable';
    letter-spacing: 5px;
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
    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;
    background-color: #ffffff21;
    margin-top: 30px;
}

.new-section-button:hover {
    background-color: #ffffff;
    color: #1D1D1D;
}

/* Media Queries */
@media (max-width: 768px) {
    .new-section {
        width: 90%;
        height: 30rem;
        background-image: url(Discover\ 2.jpg);
        background-size: cover;
        object-fit: cover;
        padding: 20px;
        display: flex;
        align-items: center;
        border-radius: 30px;
        justify-content: center;
    }

    .new-section-title {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 20px;
        /* max-width: 300px */
        letter-spacing: 2px;
    }

    .new-section-button {
        font-size: 0.8rem;
        padding: 10px 20px;
        letter-spacing: 2px;
        margin-top: 10px;
    }

}


/* Inspirations Section Styles */
.inspirations-section {
    padding: 100px 0;
    /* background-color: #ffffff; */
    overflow: hidden;
}

.inspirations-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 0 20px;
}

.inspirations-title {
    font-family: 'norman', serif;
    font-size: 5rem;
    margin-bottom: 20px;
    color: #1D1D1D;
    font-weight: 400;
}

.inspirations-subtitle {
    font-family: variable;
    letter-spacing: 1.2px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1d1d1d;
    max-width: 720px;
    font-weight: 400;
    margin: 0 auto;
}

.ticker-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    display: flex;
    width: max-content;
}

.ticker-item {
    flex: 0 0 auto;
    width: 500px;
    height: 400px;
    margin: 0 15px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ticker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ticker-item:hover .ticker-image {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    .inspirations-title {
        font-size: 3rem;
    }

    .ticker-item {
        width: 300px;
        height: 225px;
        margin: 0 10px;
    }

    .inspirations-subtitle {
        font-family: variable;
        letter-spacing: 1.2px;
        font-size: 1rem;
        line-height: 1.6;
        color: #1d1d1d;
        max-width: 100%;
        font-weight: 400;
        margin: 0 auto;
    }

    .inspirations-header {
        width: 100%;
        margin: 0 auto 60px;
        text-align: center;
        padding: 0 10px;
    }

    .inspirations-section {
        padding: 100px 0;
        /* background-color: #ffffff; */
        overflow: hidden;
    }
}


.headline-container {
    padding: 90px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.headline {
    font-family: 'norman';
    font-size: 8rem;
    line-height: 1.1;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.headline1 {
    font-family: 'norman';
    font-size: 8rem;
    line-height: 1.1;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.map {
    width: 100vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
}

/* Responsive Styles */
@media (max-width: 1200px) {

    .container {
        width: 100vw;
        position: relative;
        height: 220vh;
        /* Enough height to allow scrolling */
    }

    .best-sellers {
        position: relative;
        height: 220vh;
        /* enough height to scroll */
        padding-top: 5vh;
        /* gives room before sticky kicks in */
    }

    .tiles {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .tile {
        position: absolute;
        width: 150px;
        text-align: start;
        opacity: 0;
    }

    .tile img {
        width: 100%;
        height: auto;
        display: block;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .tile p {
        font-family: 'variable';
        font-size: 1rem;
        padding-top: 5px;
    }

    .tile p:hover {
        color: #B44414;
        font-family: 'variable';
        font-size: 1rem;
        padding-top: 10px;
    }

    /* Manually stagger positioning (adjust as needed) */
    .tile:nth-child(1) {
        top: 20vh;
        left: 50%;
    }

    .tile:nth-child(2) {
        top: 60vh;
        left: 10%;
    }

    .tile:nth-child(3) {
        top: 100vh;
        left: 50%;
    }

    .tile:nth-child(4) {
        top: 140vh;
        left: 10%;
    }

    .sticky-title h1 {
        font-weight: 300;
        font-size: 3rem;
        font-family: 'norman';
        color: #ffffff;
    }

    .headline {
        font-size: 100px;
    }
}

@media (max-width: 992px) {
    .headline-container {
        padding: 100px 30px;
    }

    .headline {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .headline-container {
        padding: 80px 20px;
    }

    .headline {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .headline-container {
        padding: 60px 15px;
    }

    .headline {
        font-size: 2rem;
        margin-top: 10px;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .headline1 {
        font-size: 2rem;
        margin-top: 10px;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .map {
        width: 90vw;
        height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .map img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-size: cover;
    }

}

/* Liquid Button Section */
.liquid-button-section {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.liquid-button-container {
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin: 0 auto; */
    padding: 0 20px;
}

.liquid-buttons {
    width: 90vw;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 0.5rem;
}

.liquid-btn {
    position: relative;
    display: inline-block;
    width: 45vw;
    height: 200px;
    line-height: 200px;
    text-align: center;
    color: #000;
    font-size: 24px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #000;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
}

.liquid-btn span {
    font-family: 'variable';
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.liquid-btn:hover span {
    color: #fff;
}

.liquid-btn .liquid {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #B44414;
    /* Baldosa Ceramica orange color */
    z-index: 1;
    transition: 0.1s;
}

.liquid-btn:hover .liquid {
    top: 0;
}

/* Liquid wave effect */
.liquid-btn .liquid::before,
.liquid-btn .liquid::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}


@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}

/* Mobile Devices (portrait phones) */
@media only screen and (max-width: 768px) {
    /* ... existing code ... */

    /* About Section Mobile Styles */
    .about-container {
        padding: 0 20px;
        margin-top: 50px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
        align-items: start;
    }

    .about-left {
        order: 2;
    }

    .about-right {
        order: 1;
    }

    .background-line {
        display: none;
    }

    .animate {
        font-family: 'variable';
        max-width: 1070px;
        color: #B44414;
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 2rem;
        transition: color 0.5s ease;
    }

    .about-text {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .about-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
        letter-spacing: 3px;
        align-self: center;
        margin-top: 10px;
    }

    .right-image {
        height: 300px;
    }

    .image-container {
        width: 90%;
        margin-right: 5%;
        margin-left: 5%;
    }

    .liquid-button-section {
        width: 90vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        /* padding: 40px 0; */
        background-color: #ffffff;
        text-align: center;
    }

    .liquid-button-container {
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* margin: 0 auto; */
        padding: 0 20px;
    }

    .liquid-buttons {
        width: 90vw;
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .liquid-btn {
        position: relative;
        display: inline-block;
        width: 44vw;
        height: 60px;
        line-height: 60px;
        text-align: center;
        color: #000;
        font-size: 1.1rem;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        border: 1px solid #000;
        overflow: hidden;
        transition: 0.3s;
        z-index: 1;
    }

    .liquid-btn span {
        font-family: 'variable';
        font-size: 1.1rem;
        position: relative;
        z-index: 2;
        transition: 0.3s;
    }

    .liquid-btn:hover span {
        color: #fff;
    }

    .liquid-btn .liquid {
        position: absolute;
        top: 120%;
        left: 0;
        width: 100%;
        height: 100%;
        background: #B44414;
        /* Baldosa Ceramica orange color */
        z-index: 1;
        transition: 0.1s;
    }
}

/* Tablets and small laptops */
@media only screen and (min-width: 769px) and (max-width: 992px) {
    /* ... existing code ... */

    /* About Section Tablet Styles */
    .about-container {
        padding: 0 40px;
        margin-top: 60px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    .about-content {
        gap: 50px;
    }

    .about-text {
        font-size: 1.3rem;
        line-height: 1.7;
    }

    .about-btn {
        padding: 11px 28px;
        font-size: 0.85rem;
    }

    .right-image {
        height: 400px;
    }

    .image-container {
        width: 70%;
    }

}

/* Large laptops and desktops */
@media only screen and (min-width: 993px) {
    /* ... existing code ... */

    /* About Section Desktop Styles */
    .about-container {
        padding: 0 50px;
        margin-top: 80px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        gap: 80px;
    }

    .about-text {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .about-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        letter-spacing: 5px;
    }

    .about-btn:hover {
        background-color: #1D1D1D;
        color: #ffffff;
    }

    .right-image {
        height: 500px;
    }

    .image-container {
        width: 50%;
        margin-right: 3%;
    }

    .background-line {
        display: flex;
    }
}


/* 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;
}

.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;
}

.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 {
    display: flex;
    justify-content: start;
    align-items: start;
    font-family: 'variable';
    font-size: 1.2rem;
    /* 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-contact-info li {
        font-family: 'variable';
        font-size: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        opacity: 0.9;
    }

    .footer-container {
        width: 100vw;
        padding: 10px;
        flex-direction: column;
    }

    .footer-logo-section {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .footer-links-section {
        width: 100%;
        margin-top: 10px;
    }

    .footer-links-column {
        flex: 0 0 calc(50% - 15px);
    }
}

@media only screen and (max-width: 768px) {

    .footer-section {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer-description {
        font-size: 1rem;

    }

    .footer-links a {
        font-family: 'variable';
        font-size: 1rem;
        color: #ffffff;
        text-decoration: none;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        opacity: 1;
        color: #000000;
        padding-left: 0px;

    }

    .footer-links-column {
        flex: 0 0 100%;
        margin-bottom: 10px;
        padding: 10px;
        padding-left: 0%;
    }

    .footer-bottom {
        width: 100vw;
        display: flex;
        justify-content: start;
        align-items: start;
        text-align: start;
        flex-direction: column;
        gap: 15px;
        margin: 0;
        padding: 10px;
    }

    .copyright {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1001;
    /* cursor: pointer; */
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: -100%;
    bottom: 0;
    background: #b44414;
    z-index: 1002;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* transition: 0.3s; */
}

.mobile-menu.active {
    display: flex;
    right: 0;
}

.mobile-menu ul {
    font-size: 1rem;
    text-align: center;
    font-family: 'variable';
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 30px 0;
}

.mobile-menu ul li a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 1px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 45px;
    font-size: 3rem;
    color: #fff;
    /* cursor: pointer; */
}

/* Responsive: Show hamburger, hide nav links on mobile */
@media (max-width: 900px) {
    .navbar .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}


.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: 40px 0; */
    width: 100%;
}

.promo-video {
    width: 80vw;
    /* max-width: 900px; */
    /* border-radius: 18px; */
    /* background: #000; */
}

.video-section:hover,
.promo-video:hover {
    /* Remove any hover effect */
    filter: none !important;
    box-shadow: none !important;
    background: none !important;
    opacity: 1 !important;
    transform: none !important;
    /* Add more properties if you have custom hover styles elsewhere */
}


@media (max-width: 576px) {
    .footer-links a:hover {
        opacity: 1;

    }

    .promo-video {
        width: 100vw;
        /* max-width: 900px; */
        /* border-radius: 18px; */
        /* background: #000; */
    }
}

/* Style Google Translate widget in navbar */
#google_translate_element {
  display: inline-block;
  position: fixed;
  vertical-align: middle;
  bottom: 30px;
  left: 30px;
  z-index: 998;
  border-radius: 50% !important;
  transform: scale(1.5); /* Make the entire widget 1.5x bigger */
}

.goog-te-gadget {
  font-family: inherit !important;
  font-size: 2.5em !important; /* Increased from 2em to 2.5em */
  color: inherit !important;
}

.goog-te-gadget .goog-te-combo {
  padding: 15px 25px; /* Increased padding */
  /* border-radius: 8px; Slightly more rounded */
  
  font-size: 2.5em; /* Increased from 2em to 2.5em */
  font-weight: bold; /* Make text bolder */
}

/* Make Google logo bigger */
.goog-te-gadget img {
  width: 20px !important; /* Increase logo size */
  height: auto !important;
}

.goog-logo-link, .goog-te-gadget span {
  display: none !important;
}

@media (max-width: 600px) {
  #google_translate_element {
    display: inline-block;
  position: fixed;
  vertical-align: middle;
  bottom: 150px;
  left: 30px;
  z-index: 998;
  border-radius: 50% !important;
  transform: scale(1.5); /* Make the entire widget 1.5x bigger */
  }
}