/* ====================================
   GOOGLE DESIGN SYSTEM
==================================== */

:root {

    /* Colors */
    --primary-color: #EAD7D2;
    --secondary-color: #F7F2EE;
    --accent-color: #C9A27E;
    --dark-color: #2E2E2E;
    --text-color: #6B6B6B;
    --white-color: #FFFFFF;
    --border-color: #EFE8E3;


    /* Fonts */
    --heading-font: "Playfair Display", serif;
    --body-font: "Poppins", sans-serif;


    /* Sizes */
    --section-padding: 100px;
    --container-width: 1200px;


    /* Effects */
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 35px;

    --shadow-soft: 
        0 10px 30px rgba(0, 0, 0, 0.06);

    --transition:
        all 0.35s ease;
}


/* ====================================
   RESET
==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.8;
    overflow-x: hidden;
}


/* ====================================
   TYPOGRAPHY
==================================== */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--heading-font);
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.2;
}


h1 {
    font-size: 4rem;
}


h2 {
    font-size: 2.8rem;
}


h3 {
    font-size: 1.5rem;
}


p {
    font-size: 1rem;
}


a {
    text-decoration: none;
    color: inherit;
}


ul {
    list-style: none;
}


img {
    width: 100%;
    display: block;
    object-fit: cover;
}


/* ====================================
   BOOTSTRAP CONTAINER OVERRIDE
==================================== */

.container {
    max-width: var(--container-width);
}


/* ====================================
   COMMON SECTIONS
==================================== */

section {
    padding: var(--section-padding) 0;
}


.section-title {

    text-align: center;
    margin-bottom: 60px;
}


.section-title span {

    display: inline-block;
    color: var(--accent-color);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}


.section-title h2 {

    max-width: 700px;
    margin: auto;
}


/* ====================================
   GLOBAL BUTTON STYLE
==================================== */

.btn {

    border-radius: 50px;
    padding: 14px 35px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}


.btn:focus {
    box-shadow: none;
}


/* ====================================
   SCROLLBAR (Luxury Detail)
==================================== */

::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background: var(--secondary-color);
}


::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 20px;
}


::-webkit-scrollbar-thumb:hover {
    background: #b48b67;
}


/* ====================================
   TEXT SELECTION
==================================== */

::selection {
    background: var(--primary-color);
    color: var(--dark-color);
}


/* ====================================
   SMALL ANIMATIONS
==================================== */

.fade-up {

    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}


.fade-up.show {

    opacity: 1;
    transform: translateY(0);
}


/* ==========================================
            LANGUAGE SWITCHER
========================================== */

.language-switcher {

    position: relative;

    margin-left: 20px;

}

.language-btn {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 16px;

    background: transparent;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50px;

    color: var(--white-color);

    font-size: .95rem;

    font-weight: 500;

    cursor: pointer;

    transition: .3s ease;

}

.language-btn:hover {

    background: rgba(255,255,255,.08);

    border-color: var(--primary-color);

}

.language-btn i {

    font-size: .8rem;

    transition: .3s ease;

}

.language-btn.active i {

    transform: rotate(180deg);

}



/* ==========================================
            DROPDOWN
========================================== */

.language-dropdown {

    position: absolute;

    top: calc(100% + 12px);

    right: 0;

    min-width: 170px;

    padding: 8px 0;

    margin: 0;

    list-style: none;

    background: #fff;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,.12);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .3s ease;

    z-index: 999;

}

.language-dropdown.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.language-dropdown li {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    cursor: pointer;

    font-size: .95rem;

    color: #444;

    transition: .25s;

}

.language-dropdown li:hover {

    background: rgba(0,0,0,.04);

    color: var(--primary-color);

}

.language-dropdown li.active {

    color: var(--primary-color);

    font-weight: 600;

}



/* ==========================================
            RESPONSIVE
========================================== */

@media (max-width:991px){

    .language-switcher{

        margin:20px 0 0;

        width:100%;

    }

    .language-btn{

        width:100%;

        justify-content: space-between;

    }

    .language-dropdown{

        position: static;

        margin-top:10px;

        width:100%;

        opacity:1;

        visibility:visible;

        transform:none;

        display:none;

        box-shadow:none;

        border-radius:15px;

    }

    .language-dropdown.show{

        display:block;

    }

}