:root {
    --primary-color: #A88F52;
    --white: #fff;

}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
    color: #A88F52;
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;

}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
    padding: 0;
}

/* header css  */
header {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

header .nav-link {
    padding: 0px 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

header .nav-link:hover {
    color: var(--primary-color);
}

/* header css  */

/* banner css   */
.banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    padding-top: 260px;
    position: relative;
}

.home-banner {
    background-image: url('../images/home-banner.webp');

}

.home-banner h1 {
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 60px;
    color: var(--white);
}

.home-banner h1 span {

    color: var(--primary-color);
}

.home-banner p {
    font-weight: 300;
    font-size: 16px;
    line-height: 23.6px;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-primary {
    padding: 10px 40px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    outline: none;
    border: none;
}

.btn-secondary {
    padding: 10px 40px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--white);
}

.home-banner .btn-primary:focus {
    outline: none;
    border: none;
    margin-right: 10px;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.hrline {
    border-bottom: 1px solid #FFFFFF61;
    padding-bottom: 10px;
    padding-top: 10px;
}

.login-btn {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
    padding: 10px 50px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    color: var(--primary-color);
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* banner css   */

/* .professional css  */
.professional-bartenders {
    padding: 130px 0px 60px 0px;
}



.professional-bartenders-item-right h2 {

    font-family: Playfair Display;
    font-weight: 700;
    font-size: 50px;
    line-height: 52px;
    letter-spacing: 0.3px;
    color: #0D101E;

}

.professional-bartenders-item-right p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    color: #272727;
    margin: 30px 0px;
}

/* .professional css  */


/* .risings-stars css  */
.risings-stars {
    padding: 60px 0px;
    background-color:#F3F4FD;

}
.risings-stars h2 {
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 50px;
    line-height: 52px;
    text-align: center;

}
.risings-stars p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    text-align: center;
    color:  #272727;
    margin: 20px 0px;
}

.risings-stars-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.risings-stars-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.risings-stars-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    padding: 30px;
}

.risings-stars-content {
    max-width: 330px;
    color: var(--white);
}

.risings-stars-content h3 {
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 15px;
}

.risings-stars-content p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: left;
    color:var(--white);
}

.risings-stars-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-secondary-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn-secondary-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .risings-stars {
        padding: 40px 0;
    }

    .risings-stars-content h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .risings-stars-content {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .risings-stars-overlay {
        padding: 20px;
    }

    .risings-stars-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* .risings-stars css  */

/* .why-choose-us css  */
.why-choose-us {
    padding: 100px 0px;
    background-color: var(--white);
}

.why-choose-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-us-header h2 {
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 50px;
    line-height: 52px;
    color: #0D101E;
    margin-bottom: 20px;
}

.why-choose-us-header p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    color: #272727;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-us-card {
    background-color: var(--white);
    border-radius: 29px;
    padding: 80px 40px 40px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.why-choose-us-card:hover {
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.why-choose-us-icon {position: absolute;top: -50px;}



.why-choose-us-card h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #0D101E;
    margin-bottom: 15px;
}

.why-choose-us-card p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #272727;
    margin: 0;
}

@media (max-width: 991.98px) {
    .why-choose-us {
        padding: 80px 0px;
    }

    .why-choose-us-header h2 {
        font-size: 40px;
        line-height: 46px;
    }

    .why-choose-us-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .why-choose-us {
        padding: 60px 0px;
    }

    .why-choose-us-header h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .why-choose-us-card {
        margin-bottom: 30px;
    }
}
/* .why-choose-us css  */

/* who-know-the-arts */
.who-know-the-arts {
    min-height: 600px;
    background-image: url('../images/who-know-the-arts.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 0px;
}

.who-know-the-arts-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.who-know-the-arts h2 {
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
    color: var(--white);
    margin-bottom: 20px;
}

.who-know-the-arts p {
    font-weight: 300;
    font-size: 16px;
    line-height: 25.6px;
    color: var(--white);
    margin-bottom: 30px;
}

.who-know-the-arts-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .who-know-the-arts {
        min-height: 500px;
        padding: 80px 0px;
    }

    .who-know-the-arts h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 767.98px) {
    .who-know-the-arts {
        min-height: 450px;
        padding: 60px 0px;
    }

    .who-know-the-arts h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .who-know-the-arts p {
        font-size: 14px;
        line-height: 22px;
    }

    .who-know-the-arts-actions {
        flex-direction: column;
        align-items: center;
    }

    .who-know-the-arts-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* .our-clients css  */
.our-clients {
    padding: 100px 0px;
    background-color: var(--white);
}

.our-clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-clients-header h2 {
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 50px;
    line-height: 52px;
    color: #0D101E;
}

.our-clients-card {
    background-color: #F8F8FF;
    border-top: 5px solid var(--primary-color);
    border-radius: 10px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.our-clients-card:hover {
    box-shadow: 0px 4px 20px rgba(168, 143, 82, 0.15);
    transform: translateY(-5px);
}

.our-clients-card p {
    font-weight: 400;
    font-style: Italic;
    font-size: 19.05px;
    line-height: 28.8px;
color: #272727;
}

.our-clients-card h4 {
    color: var(--primary-color);
    font-weight: 400;
    font-style: Italic;
    font-size: 16px;
    line-height: 22.4px;
}

@media (max-width: 991.98px) {
    .our-clients {
        padding: 80px 0px;
    }

    .our-clients-header h2 {
        font-size: 40px;
        line-height: 46px;
    }

    .our-clients-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .our-clients {
        padding: 60px 0px;
    }

    .our-clients-header h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .our-clients-card {
        margin-bottom: 30px;
    }
}
/* .our-clients css  */

/* footer css  */
footer {
    background-color: #0D101E;
}

.footer-upper {
    background-color: #0D101E;
    padding: 60px 0px 40px 0px;
}

.footer-lower {
    background-color: #101636;
    padding: 20px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav ul li {
    margin: 0;
    padding: 0;
}

.footer-nav ul li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--white);
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .footer-upper {
        padding: 50px 0px 30px 0px;
    }

    .footer-nav ul {
        gap: 20px;
        flex-direction: column;
    }

    .footer-lower .row {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-copyright {
        text-align: center;
    }
}
/* footer css  */
