/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #6F4E37;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
}

p {
    margin: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.white-clr {
    color: #fff;
}

.black-clr {
    color: #333;
}

.yellow-clr {
    color: #ffd700;
}

.text-center {
    text-align: center;
}

.responsive-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.common-padding {
    padding: 80px 0;
}

/* Header Section */
.header-section {
    background-color: #2c3e50;
    color: #fff;
}

.header-section__top-bar {
    padding: 10px 0;
    border-bottom: 1px solid #34495e;
}

.header-section__top-bar-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.header-section__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.navbar__logo {
    height: 50px;
}

.navbar__links {
    display: flex;
    gap: 20px;
}

.navbar__links a {
    font-weight: 500;
    transition: color 0.3s;
}

.navbar__links a:hover {
    color: #ffd700;
}

.header-section__nav-mobile {
    display: none;
}

/* Section 1 - Hero Section */
.section-1 {
    background: url('./Images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.section-1__span-text {
    font-size: 18px;
    font-weight: 300;
    display: block;
    margin-bottom: 10px;
}

.section-1__main-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-1__button-white {
    background-color: #fff;
    color: #2c3e50;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.section-1__button-white:hover {
    background-color: #ffd700;
}

/* Section 2 - Video Section */
.section-2 {
    display: flex;
    gap: 40px;
    align-items: center;
}

.section-2-left video {
    width: 100%;
    border-radius: 10px;
}

.section-2-right__span {
    font-size: 16px;
    font-weight: 300;
    color: #ffd700;
    display: block;
    margin-bottom: 10px;
}

.section-2-right__h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section-2-right__h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.section-2-right__p {
    font-size: 16px;
    margin-bottom: 20px;
}

.section-2-right__button-secondary {
    background-color: #ffd700;
    color: #2c3e50;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.section-2-right__button-secondary:hover {
    background-color: #e6b800;
}

/* Section 3 - Coffee Menu */
.section-3__h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-3__p {
    font-size: 16px;
    margin-bottom: 40px;
}

.section-3__card-main-div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.section-3__card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-3__coffee-descp {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.section-3__coffee-descp h3 {
    font-size: 20px;
}

.section-3__coffee-descp p {
    font-size: 18px;
    font-weight: 600;
}

/* Section 4 - Image Gallery */
.section-4__img-div {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.section-4__img-div img {
    border-radius: 10px;
}

/* Section 5 - Testimonials */
.section-5 {
    background-color: #2c3e50;
    color: #fff;
    padding: 80px 0;
}

.section-5__h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-5__p {
    font-size: 16px;
    margin-bottom: 40px;
}

.section-5__testimonial-div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.section-5__testimonial {
    background-color: #34495e;
    padding: 20px;
    border-radius: 10px;
}

.section-5__testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.section-5__testimonial p {
    font-size: 16px;
    margin-bottom: 10px;
}

.section-5__counter-div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.section-5__counter-number {
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

/* Section 6 - Blog */
.section-6__h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-6__p {
    font-size: 16px;
    margin-bottom: 40px;
}

.section-6__blog-div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.section-6__blog {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-6__blog img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.section-6__blog-category {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.section-6__blog-category a {
    font-size: 14px;
    color: #ffd700;
}

.section-6__blog-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.section-6__blog-descp {
    font-size: 16px;
    margin-bottom: 10px;
}

.section-6__blog-date {
    font-size: 14px;
    color: #777;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
}

.footer__about-div, .footer__newsletter, .footer__follow-us {
    margin-bottom: 40px;
}

.footer__about-div h4, .footer__newsletter h4, .footer__follow-us h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer__about-div p {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer_copyright-text {
    font-size: 14px;
    color: #ccc;
}

.footer_copyright-text span {
    color: #ffd700;
}

.footer__search-div {
    display: flex;
    gap: 10px;
}

.footer__search-div input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.footer__search-div button {
    background-color: #ffd700;
    color: #2c3e50;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer__search-div button:hover {
    background-color: #e6b800;
}

.footer__social-links {
    display: flex;
    gap: 10px;
}

.footer__social-links a {
    font-size: 20px;
    color: #fff;
    transition: color 0.3s;
}

.footer__social-links a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-section__nav {
        display: none;
    }

    .header-section__nav-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .navbar__links-mobile {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #2c3e50;
        padding: 20px;
        position: absolute;
        top: 80px;
        right: 20px;
        border-radius: 10px;
    }

    .navbar__links-mobile.active {
        display: flex;
    }

    .section-1__main-heading {
        font-size: 36px;
    }

    .section-2 {
        flex-direction: column;
    }

    .section-3__card-main-div {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-4__img-div {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-5__testimonial-div {
        grid-template-columns: 1fr;
    }

    .section-5__counter-div {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-6__blog-div {
        grid-template-columns: 1fr;
    }
}