/* Google Fonts - DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Tangerine:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans" , sans-serif;
}



:root {
    /* colors */
    --white-color: white;
    --dark-color: black;
    --primary-color: ;
    --secondary-color: pink ;
    --medium-gray-color: gray;

    /* Font Size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;
    --font-size-xxxl: 5rem;

    /* Font Weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border Radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}

/* Whole Site */
ul{
    list-style: none;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    width: 100%;
}

button{
    cursor: pointer;
    border: 0;
    background: 0;
}

body{
    display: block;
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-attachment: fixed;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/interior-library.webp");
    backdrop-filter: blur(50px);
    background-repeat: no-repeat;  /* ❌ stop repeating */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.section-content{
    margin: 0 auto;
    padding: 20px;
    max-width: var(--site-max-width);
}


.swiper{
    z-index: 0 !important;
}

.sticky{
    position: sticky;
    top: 0;
}

/* Custom Menu Button */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.icon {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    transition: 0.5s ease;
}

.icon:hover {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    transform: rotate(180deg);

}

.hidden {
    display: none;
}

/* Section Heading */
.section-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    color: var(--white-color);
}

/* Mobile Responsive max-width 900px */
@media screen and (max-width:900px){
    :root{
        /* Font Size */
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
        --font-size-xxxl: 2.2rem;
    }
}