* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coffee-dark: #2c1810;
    --coffee-medium: #4a2c17;
    --coffee-light: #6b3d22;
    --espresso: #3d2314;
    --crema: #d4a574;
    --cream: #f5e6d3;
    --vanilla: #faf3e8;
    --caramel: #c68642;
    --mocha: #6f4e37;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--coffee-dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, var(--caramel) 0%, var(--coffee-light) 100%);
    color: var(--cream);
    padding: 0.925rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 20px;
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tagline {
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.85;
    margin-top: 0.2rem;
    margin-left: 6.5%;
    font-weight: 500;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, #d4a574 0%, #8B4513 50%, #5c3317 100%);
    padding: 10px 25px;
    border-radius: 4px;
    box-shadow:
        0 4px 15px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.4);
    letter-spacing: 1px;
    border: 2px solid #3d2314;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--crema);
}

.hero {
    position: relative;
    height: 500px;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: #faf3e8;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('BANNER.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    position: absolute;
    top: 30%;
    left: 2.5%;
    z-index: 2;
}

.hero-content .btn {
    display: inline-block;
    margin: 0;
    transform: scale(0.85);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url('BANNER.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-tagline {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    font-size: 1.4rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
    padding-bottom: 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--caramel) 0%, var(--coffee-light) 100%);
    color: white;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.btn:hover {
    background: linear-gradient(135deg, var(--crema) 0%, var(--caramel) 100%);
    transform: translateY(-1.1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--mocha);
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.about, .products {
    padding: 5rem 0;
}

.about {
    background: linear-gradient(180deg, var(--vanilla) 0%, var(--cream) 100%);
}

.products {
    background: var(--cream);
}

.about h2, .products h2, .specials h2, .testimonials h2, .faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--coffee-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--coffee-medium);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    background: linear-gradient(135deg, #fff9f0 0%, #f5e6d3 50%, #e8d4b8 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 2px solid #d4a574;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature h4 {
    color: #2c1810;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.feature p {
    font-size: 0.95rem;
    color: #4a2c17;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #d4a574 0%, #8B4513 50%, #5c3317 100%);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #3d2314;
    color: #ffffff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.product-card .price {
    font-weight: bold;
    color: #f5e6d3;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.product-card .flavors {
    font-size: 0.9rem;
    color: #f5e6d3;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.specials {
    background: linear-gradient(135deg, #fff9f0 0%, #f5e6d3 50%, #e8d4b8 100%);
    color: #2c1810;
    padding: 5rem 0;
}

.specials h2 {
    color: #2c1810;
}

.specials .section-subtitle {
    color: #4a2c17;
    opacity: 0.9;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.special-card {
    background: linear-gradient(135deg, #fff9f0 0%, #f5e6d3 50%, #e8d4b8 100%);
    color: #2c1810;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #d4a574;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
}

.special-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}

.special-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4a574 0%, #8B4513 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    border: 1px solid #3d2314;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.special-card h3 {
    color: #2c1810;
    margin: 0.5rem 0;
    font-size: 1.2rem;
    text-shadow: none;
    font-weight: 700;
}

.special-card p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #4a2c17;
    text-shadow: none;
    font-weight: 600;
}

.special-price {
    font-weight: bold;
    color: #8B4513;
    font-size: 1.1rem;
    text-shadow: none;
}

.special-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}

.special-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4a574 0%, #8B4513 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    border: 1px solid #3d2314;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.special-card h3 {
    color: #ffffff;
    margin: 0.5rem 0;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.special-card p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #f5e6d3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.special-price {
    display: block;
    font-weight: bold;
    color: var(--coffee-light);
    font-size: 1.1rem;
}

.testimonials {
    background: linear-gradient(180deg, var(--cream) 0%, var(--vanilla) 100%);
    padding: 5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #fff9f0 0%, #f5e6d3 50%, #e8d4b8 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    text-align: center;
    border: 2px solid #d4a574;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}

.stars {
    color: var(--caramel);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a2c17;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.customer {
    font-weight: 600;
    color: #2c1810;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.faq {
    background: var(--cream);
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: linear-gradient(135deg, #d4a574 0%, #8B4513 50%, #5c3317 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid #3d2314;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
}

.faq-item h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.6;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.faq-item p {
    color: #f5e6d3;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: max-height 0.6s ease, opacity 0.5s ease, margin 0.6s ease, padding 0.6s ease;
    white-space: normal;
    word-break: break-word;
}

.faq-item.active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}

.faq-item.active h4 {
    color: #ffffff;
}

.faq-item.active p {
    max-height: 1000px;
    opacity: 1;
    margin: 0.75rem 0 0;
    padding: 0.5rem 0 0;
    color: #f5e6d3;
    overflow: visible;
}

.faq-item h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.6;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.faq-item .faq-answer {
    color: #f5e6d3;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.5s ease, padding 0.5s ease;
}

.faq-item.active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}

.faq-item.active h4 {
    color: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    margin: 0.75rem 0 0;
    padding: 0.5rem 0 0;
    color: #f5e6d3;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
}

.contact {
    background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--espresso) 100%);
    color: var(--cream);
    padding: 5rem 0;
}

.contact h2 {
    color: var(--crema);
}

.contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--crema);
}

.contact-item p {
    margin: 0;
    color: var(--cream);
}

.order-form {
    background: var(--vanilla);
    padding: 2rem;
    border-radius: 12px;
    color: var(--coffee-dark);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.order-form h3 {
    color: var(--coffee-dark);
    margin-bottom: 1.5rem;
}

.order-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-form input,
.order-form select,
.order-form textarea {
    padding: 0.8rem;
    border: 1px solid var(--crema);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
}

.order-form textarea {
    resize: vertical;
}

footer {
    background: var(--coffee-dark);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 0.5rem;
    color: var(--crema);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--crema);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--crema);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--coffee-light);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .specials-grid,
    .product-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .special-card,
    .product-card,
    .testimonial-card,
    .feature {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .faq-item {
        padding: 1rem 1.25rem;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .product-card,
    .special-card,
    .testimonial-card,
    .feature {
        margin-bottom: 1rem;
    }

    * {
        box-sizing: border-box;
    }
}