/* color palette */

:root {
    --font-one: "Sedan", serif;
    --font-two: "Kaushan Script", cursive;
    --color-one: #fff8f4;
    --color-two: #fae4d6;
    --color-three: #fff1e8;
    --color-four: #fff4ea;
    --color-five: #e6c48e;
    --color-six: #000;
}


/* common  */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
p, a, h1, h2, h3 {
    font-family: var(--font-one);
}
p, a {
    font-size: 18px;
    line-height: 1.5;
}
h4 {
    font-family: var(--font-two);
}
section {
    padding: 100px 0;
}
.main {
    font-size: 30px;
    padding-bottom: 25px;
}
.sub {
    font-size: 20px;
    padding-bottom: 10px;
}


/* navigation   */
nav {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: var(--color-one);
}
.nav {
    color: var(--color-six);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}
#logo a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#logo a {
    display: flex;
    color: var(--color-six);
    font-size: 25px;
    text-transform: uppercase;
}
#menu {
    display: flex;
    gap: 40px;
}
#menu a {
    color: var(--color-six);
    text-decoration: none;
    font-family: var(--font-one);
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
}
#menu a:hover, #menu a.active-nav {
    color: var(--color-two);
}
#menuToggle {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
    color: var(--color-six);
}
#menu a.book-now-btn {
    background: var(--color-six);
    color: var(--color-one);
    padding: 10px 20px;
    border-radius: 25px;
}
#menu a.book-now-btn:hover {
    color: var(--color-two);
}


@media screen and (max-width:767px) {
    
    nav {
        padding: 15px 0;
        z-index: 100;
    }
    .nav {
        padding-top: 0;
        padding-bottom: 0;
    }
    #menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 95px;
        left: 0;
        width: 100%;
        background-color: var(--color-one);
        z-index: 1;
        height: 100vh;
        padding-top: 50px;
        gap: 15px;
    }
    #menu a:hover, #menu a.active-nav {
        color: var(--color-two);
    }
    #logo {
        max-width: 150px;
    }
    #menu a {
        padding: 10px 30px;
    }
    #menuToggle {
        display: block;
        z-index: 2;
    }
    #menuToggle.open {
        display: none;
    }
    #menuToggle.closed {
        display: block;
    }
    #menu {
        background-color: var(--color-one);
        z-index: 1000;
    }
}


/* hero section  */
.hero-section {
    background: var(--color-one);
    height: 93vh;
}
.hero-content {
    display: flex;
    gap: 80px;
    align-items: center;
}
.hero-left, .hero-right {
    width: 50%;
}
.hero-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.hero-img {
    height: 700px;
}
.hero-left h4 {
    font-size: 22px;
}
.hero-left h1 {
    font-size: 60px;
}
.hero-left p {
    font-size: 18px;
    padding: 20px 0;
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.hero-right {
    position: relative;
    z-index: 100;
}
.hero-img-box {
    width: 350px;
    height: 350px;
    border: 4px solid var(--color-two);
    position: absolute;
    left: -25px;
    bottom: -25px;
    z-index: -1;
    border-radius: 5px;
}
.btn-1 a {
    border: 2px solid var(--color-five);
    color: var(--color-five);
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
}
.btn-2 a {
    background: var(--color-five);
    color: var(--color-four);
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
}


/* award-section  */
.award-section {
    background: var(--color-three);
}
.award-content {
    display: flex;
    gap: 30px;
}
.award {
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 2px 2px 5px var(--color-two);
    border-radius: 5px;
    padding: 15px;
}
.award-icon i {
    font-size: 40px;
    color: var(--color-five);
}
.award-txt p {
    color: grey;
    padding-top: 8px;
}


/* about  */
/* .about-section {
    background: var(--color-one);
} */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}
.about-left, .about-right {
    width: 50%;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-left {
    position: relative;
}
.pattern {
    max-width: 180px;
    position: absolute;
    left: -62px;
    bottom: 10px;
    z-index: -1;
    transform: rotate(90deg);
}
.about-img {
    height: 600px;
    z-index: 10;
}
.order {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}


/* new-section */
.new-section {
    background: var(--color-one);
}
.new-collection-slide-wrapper {
    padding-top: 50px;
}
.new-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.new-card-img {
    height: 300px;
}
.new-card {
    position: relative;
}
.new-card-txt {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    color: var(--color-two);
    font-size: 20px;
    border-radius: 5px;
}


/* category  */
.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 50px;
}
.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-img {
    height: 250px;
}
.category-item.r, .category-item.r-r {
    display: flex;
    align-items: center;
    background: var(--color-three);
}
.category-item.r-r {
    flex-direction: row-reverse;
}
.category-img, .category-name {
    width: 50%;
}
.category-name {
    padding: 25px;
    font-size: 25px;
    color: var(--color-six);
}


/* banner  */
.parallax {
    background-image: linear-gradient(to bottom, rgba(229, 195, 141, 0.8), rgba(255, 241, 232, 0.5)),
    url("../img/banner.jpg");
    height: 500px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    margin: 80px 0;
}
.contact-banner {
    height:500px;
    background-color:transparent;
    text-align: center;
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-banner p {
    font-size: 24px;
    width: 80%;
    margin: 0 auto;
}
.contact-banner h4 {
    font-size: 20px;
}
.contact-banner h2 {
    font-size: 60px;
    padding: 25px 0;
}
.contact-us {
    margin-top: 40px;
}