/*==================================================
  ROOT
==================================================*/

:root {

    /* Color */
    --primary: #C8A96A;
    --primary-light: #E9D8B4;
    --secondary: #1C1B1A;
    --dark: #111111;
    --light: #F8F6F2;
    --white: #FFFFFF;
    --text: #666666;
    --border: #ECE6DB;
    --success: #198754;
    --danger: #DC3545;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Radius */
    --radius-sm: 10px;
    --radius: 20px;
    --radius-lg: 32px;
    --radius-full: 999px;

    /* Shadow */
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, .05);
    --shadow: 0 15px 40px rgba(0, 0, 0, .08);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, .12);

    /* Transition */
    --transition: .35s ease;

    /* Navbar */
    --navbar-height: 85px;

    /* Section */
    --section-padding: 120px;

}
/*==================================================
  RESET
==================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--font-body);
    font-size:15px;
    font-weight:400;
    color:var(--text);
    background:var(--white);

    overflow-x:hidden;

    line-height:1.8;

}

body.no-scroll{
    overflow:hidden;
}
/*==================================================
  TYPOGRAPHY
==================================================*/

h1,h2,h3,h4,h5,h6{

    font-family:var(--font-heading);

    color:var(--secondary);

    font-weight:700;

    line-height:1.2;

}

.script{

    font-family:var(--font-script);

}

p{

    margin-bottom:1rem;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

img{

    max-width:100%;

    display:block;

}

ul{

    margin:0;

    padding:0;

    list-style:none;

}
/*==================================================
  SECTION
==================================================*/

section{

    position:relative;

    padding:var(--section-padding) 0;

}

.container{

    max-width:1320px;

}

.section-title{

    font-size:54px;

    margin-bottom:15px;

}

.section-subtitle{

    font-family:var(--font-script);

    color:var(--primary);

    font-size:40px;

    margin-bottom:10px;

}

.section-description{

    max-width:700px;

    margin:auto;

}
/*==================================================
  BACKGROUND
==================================================*/

.bg-light{

    background:var(--light)!important;

}

.bg-dark{

    background:var(--secondary)!important;

    color:white;

}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5{

    color:white;

}
/*==================================================
  SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#B8934C;

}
/*==================================================
  SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:white;

}
/*==================================================
  DIVIDER
==================================================*/

.divider{

    width:80px;

    height:3px;

    margin:20px auto;

    border-radius:20px;

    background:var(--primary);

}