@tailwind base;
@tailwind components;
@tailwind utilities;

/* Webkit-based browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    /* Adjust the width as needed */
}

::-webkit-scrollbar-track {
    background: #0D0D19;
    /* Adjust the background color as needed */
}

::-webkit-scrollbar-thumb {
    background: #404040;
    /* Adjust the thumb color as needed */
    border-radius: 100px;
    /* Optional: adds rounded corners */
}

::-webkit-scrollbar-thumb:hover {
    background: #404040;
    /* Adjust the hover color as needed */
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: ArchivoExpanded;
    src: url(./fonts/Archivo\ Expanded.ttf);
    font-weight: 400;
}

@font-face {
    font-family: ArchivoExpanded;
    src: url(./fonts/Archivo\ Expanded\ Thin.ttf);
    font-weight: 250;
}

@font-face {
    font-family: ArchivoExpanded;
    src: url(./fonts/Archivo\ Expanded\ Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: ArchivoExpanded;
    src: url(./fonts/Archivo\ Expanded\ SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: ArchivoExpanded;
    src: url(./fonts/Archivo\ Expanded\ ExtraBold.ttf);
    font-weight: 700;
}

body {
    margin: 0;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'ArchivoExpanded';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    backdrop-filter: none;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header.scrolled {
    backdrop-filter: blur(10px);
    transition: backdrop-filter 0.3s ease;
}

.section1 {
    background-image: url('images/Bath.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section4 {
    background-image: url('images/Jakkuzzidesktop.jpg');
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-container-1 img {
    display: block;
    transition: transform 0.3s ease;
    /* Smooth zoom effect */
}

/* Zoom effect on hover */
.image-container-1:hover img {
    transform: scale(1.05);
    /* Zoom in by 10% */
}

.image-container-2 img {
    display: block;
    transition: transform 0.3s ease;
    /* Smooth zoom effect */
}

/* Zoom effect on hover */
.image-container-2:hover img {
    transform: scale(1.05);
    /* Zoom in by 10% */
}

.image-container-3 img {
    display: block;
    transition: transform 0.3s ease;
    /* Smooth zoom effect */
}

/* Zoom effect on hover */
.image-container-3:hover img {
    transform: scale(1.05);
    /* Zoom in by 10% */
}

.image-container-1 img {
    width: 610px;
    height: 524.1px;
}

.image-container-2 img {
    width: 710px;
    height: 523.08px;
}

.image-container-3 img {
    width: 610px;
    height: 524.1px;
}

/*Select Language*/
.custom-select {
    position: relative;
    display: inline-block;
    width: 50px;
}

/* Hide the default arrow */
.custom-select select {
    background: transparent;
    appearance: none;
    border: none;
    color: white;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}

/* Custom Arrow */
.custom-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    width: 13px;
    height: 7px;
    background: url('data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%227%22%20viewBox%3D%220%200%2013%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_1199_3395)%22%3E%3Cpath%20d%3D%22M6.65562%206.66667C4.66016%204.75943%202.65562%202.85219%200.660156%200.94495C0.968546%200.641526%201.28601%200.346771%201.63068%200.0173385C3.29961%201.61248%204.96855%203.2163%206.64655%204.82878C8.35177%203.19896%2010.0207%201.59515%2011.6896%200C12.0434%200.346771%2012.3608%200.650195%2012.6602%200.936281C10.6738%202.83485%208.66016%204.75076%206.65562%206.66667Z%22%20fill%3D%22white%22/%3E%3C/g%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_1199_3395%22%3E%3Crect%20width%3D%2212%22%20height%3D%226.66667%22%20fill%3D%22white%22%20transform%3D%22translate(0.660156)%22/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E') no-repeat center center;
    background-size: contain;
}

/* Customizing Option Background */
.custom-select option {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.menuItem {
    padding-block: 10px;
}

.bg-black {
    background-color: #0D0D19;
}

.showMenu {
    transform: translateY(0);
}

@media (max-width: 1700px) {

    .container {
        margin-top: 24px;
    }

    .image-container-2 {
        left: 413.5px;
    }

    .image-container-1 img {
        width: 510px;
        height: 524.1px;
    }

    .image-container-2 img {
        width: 570px;
        height: 523.08px;
    }

    .image-container-3 img {
        width: 510px;
        height: 524.1px;
    }
}

@media (max-width: 1536px) {

    .container {
        margin-top: 22px;
    }

    .image-container-2 {
        left: 350px;
    }

    .image-container-1 img {
        width: 430px;
        height: 424.1px;
    }

    .image-container-2 img {
        width: 500px;
        height: 423.08px;
    }

    .image-container-3 img {
        width: 430px;
        height: 424.1px;
    }


}

@media (max-width: 1280px) {

    .container {
        margin-top: 22px;
    }

    .image-container-2 {
        left: 300px;
    }

    .image-container-1 img {
        width: 360px;
        height: 400.1px;
    }

    .image-container-2 img {
        width: 400px;
        height: 400.08px;
    }

    .image-container-3 img {
        width: 360px;
        height: 400.1px;
    }
}

@media (max-width: 1152px) {


    .section4 {
        background-image: url('images/Jakuzzi.jpg');
        height: 70vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-1 {
        background-image: url('images/Doores.jpg');
        height: 50vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-2 {
        background-image: url('images/WindowRes.jpg');
        height: 50vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-3 {
        background-image: url('images/Floorres.jpg');
        height: 50vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-4 {
        background-image: url('images/Sanitationres.jpg');
        height: 50vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-5 {
        background-image: url('images/Brickres.jpg');
        height: 50vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-6 {
        background-image: url('images/Solarpanelres.jpg');
        height: 50vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 768px) {

    .image-container-1 {
        background-image: url('images/Doores.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-2 {
        background-image: url('images/WindowRes.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-3 {
        background-image: url('images/Floorres.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-4 {
        background-image: url('images/ResSanitation.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-5 {
        background-image: url('images/ResBrick.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-6 {
        background-image: url('images/ResSolarPanel.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 480px) {

    .image-container-1 {
        background-image: url('images/Doores.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-2 {
        background-image: url('images/WindowRes.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-3 {
        background-image: url('images/Floorres.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-4 {
        background-image: url('images/Sanitationres.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-5 {
        background-image: url('images/Brickres.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .image-container-6 {
        background-image: url('images/Solarpanelres.jpg');
        height: 30vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}