@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem; 
    font-family: var(--font-family-2);
}

:root {
    --main-color: #54372a;
    --second-color: #df582e;
    --text-color: #060413;
    --container-color: #f8e4be;
    --bg-color: #f9f6f2;
    --text-alter-color: #94908e;
    --poppins-font: "Poppins", sans-serif;
    --font-family-2: "Playfair Display", serif;
}

body{
    color: var(--text-color);
    background: var(--bg-color);
}

a{
    text-decoration: none;
}

img{
    width: 100%;
}

section{
    padding: 3rem 0 2rem;
}

.container{
    max-width: 1060px;
    margin: auto;
    width: 100%;
}

header{
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--text-color);
    padding: 17px 20px;
    border-radius: 2rem;
}

.logo{
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--container-color);
}

.navbar{
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}
.nav_link{
    font-size: 0.88rem;
    color: var(--text-alter-color);
    font-family: var(--poppins-font);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.nav_link:hover{
    color: var(--bg-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-icons{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}
.nav-icons .bx{
    color: var(--bg-color);
    font-size: 20px;
}

.Home{
    min-height: 650px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
}

.home-text h1{
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--main-color);
}

.home-text p{
    max-width: 300px;
    font-size: 0.94rem;
    font-family: var(--poppins-font);
    margin: 1rem 0 1.5rem;
}

.btn{
    max-width: 160px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    border-radius: 2rem;
    background: var(--text-color);
}

.btn span{
    font-family: var(--poppins-font);
    color: var(--bg-color);
    text-transform: uppercase;
}

.btn .bx{
    font-size: 20px;
    background: var(--second-color);
    color: var(--bg-color);
    padding: 5px;
    border-radius: 50%;
    transform: rotate(60deg);
}

.home-img{
    max-width: 560px;
    width: 100%;
}

.heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.heading h2{
    font-size: 2.2rem;
    font-weight: 800;
}

.service-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 160px));
    justify-content: space-between;
    gap: 1rem;
}

.ser-box{
    background: var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    padding: 35px 20px;
    border-radius: 2rem;
}

.ser-box img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.ser-box p{
    color: var(--container-color)
}
.heading p {
    max-width: 550px;
    width: 100%;
    font-size: 0.9rem;
    font-family: var(--poppins-font);
    margin-top: 1rem;
}

.product-content{
    display: grid;
    grid-template-columns: repeat(3, 250px);
    justify-content: space-between;
    gap: 2rem;
    background: #e8d8cd;
    border-radius: 1.5rem;
    padding: 40px 60px;
}

.product-box{
    background: #fff8f7;
    padding: 20px;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;   
}

.product-box .heart-icon{
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px;
    background: #fff;
    color: var(--second-color);
    border-radius: 50%;
}

.product-box img{
    margin-top: 1.5rem;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

.product-box p{
    font-size: 0.7rem;
    font-weight: 500;
    font-family: var(--poppins-font);
    padding: 2px 7px;
    border: 1px solid var(--text-alter-color);
    border-radius: 1rem;
    background: #fff;
    margin: 1rem 0 0.5rem;
}

.product-box h2{
    color: var(--main-color);
    font-size: 1.3rem;
    font-weight: 500;
}

.product-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    width: 100%;
}

.product-info span{
    color: var(--main-color);
    font-weight: 500;
}

.product-info .bx{
    padding: 8px;
    background: var(--second-color);
    color: var(--bg-color);
    border-radius: 50%;
    cursor: pointer;
}

.product-info .bx:hover{
    background: var(--main-color);
    transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}


.booking-section {
    background-color: #f5efe8;
    padding: 3em 1em;
    text-align: center;
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-section h2 {
    font-size: 1.8em;
    color: #3e2c21;
    margin-bottom: 0.5em;
}

.booking-section p {
    color: #666;
    margin-bottom: 1.5em;
    font-size: 1em;
}

.booking-form .form-group {
    margin-bottom: 1em;
    text-align: left;
}

.booking-form label {
    display: block;
    margin-bottom: 0.3em;
    font-size: 0.9em;
    color: #3e2c21;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 0.8em;
    font-size: 0.9em;
    color: #3e2c21;
    background-color: #f3f1e8;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: #c3a78a;
}

.booking-btn {
    display: inline-block;
    padding: 0.8em 2em;
    background-color: #3e2c21;
    color: #f3f1e8;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-btn:hover {
    background-color: #523b2c;
}

/* Responsive Design */
@media (max-width: 600px) {
    .booking-container {
        padding: 1.5em;
    }

    .booking-section h2 {
        font-size: 1.6em;
    }
}

.footer {
    background-color: #2e1b0f;
    color: #f3f1e8;
    padding: 3em 1em;
    font-size: 0.9em;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container > div {
    display: flex;
    flex-direction: column;
}

.footer h3 {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #e7d3c6;
    font-weight: 600;
    text-transform: uppercase;
}

.footer p,
.footer a {
    color: #cfc6b8;
    text-decoration: none;
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.footer a:hover {
    color: #f3f1e8;
    text-decoration: underline;
}

/* Navigation links */
.footer-navigation ul {
    list-style: none;
}

.footer-navigation li {
    margin-bottom: 0.5em;
}

/* Social Media links */
.footer-social a {
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: #cfc6b8;
    margin-bottom: 0.5em;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #f3f1e8;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 1em;
    border-top: 1px solid #452f1c;
    margin-top: 2em;
    font-size: 0.8em;
    color: #b8a99b;
}