

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fcfaf7;
    color: #2d2d2d;
    line-height: 1.6;
}

* {
    box-sizing: border-box;
}

.top-intro {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    background-image: url('/assets/head.jpg');
    background-size: cover;
    background-position: center;
}

.intro-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.intro-card h1 {
    font-size: 3.5rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: #1a1a1a;
    font-weight: 800;
}

.intro-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.btn-main {
    display: inline-block;
    padding: 15px 40px;
    background: #2d2d2d;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-main:hover {
    transform: translateY(-2px);
}

.early-drops {
    padding: 100px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-label {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffc107;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.drops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

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

.product-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 20px;
    background: #eee;
}

.product-item h3 {
    margin: 10px 0;
    font-size: 1.4rem;
}
.product-item .price {
    color: #888;
    font-weight: bold;
}

.sub-banner {
    background: #f4eee7;
    padding: 80px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.sub-content {
    max-width: 500px;
}
.sub-image {
    flex: 1;
    text-align: right;
}
.sub-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.brew-guides {
    padding: 100px 5%;
    background: #fff;
}

.guides-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-box {
    text-align: center;
    width: 250px;
}

.guide-box img {
    width: 60px;
    margin-bottom: 15px;
    opacity: 0.7;
}

footer {
    padding: 60px 5%;
    background: #1a1a1a;
    color: #888;
    text-align: center;
    font-size: 0.9rem;
}

.contact-section {
    padding: 100px 5%;
    background-color: #fcfaf7;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-family: inherit;
    font-size: 1rem;
    color: #2d2d2d;
    transition: border-color 0.2s;
    border-radius: 2px;
}


.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
}

.form-group textarea {
    resize: vertical;
    height: 150px;
}


.btn-contact {
    background: #ffc107;
    color: #000;
    margin-top: 10px;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.btn-contact:hover {
    background: #e6af06;
    transform: translateY(-2px);
}

.contact-form {
    transition: opacity 0.3s ease;
}

.contact-form.hidden {
    opacity: 0;
    pointer-events: none;
}

.btn-contact:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    text-align: center;
    padding: 30px;
    border-radius: 4px;
    display: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.phone-group label {
    display: flex;
    align-items: center;
    gap: 10px;
}


.whatsapp-icon {
    width: 18px;
    height: 18px;
    fill: #25D366;
    opacity: 0.9;
    transition: transform 0.2s;
}

.phone-group:hover .whatsapp-icon {
    transform: scale(1.1);
}

.form-help {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}


@media (max-width: 768px) {
    .intro-card {
        padding: 30px;
    }
    .intro-card h1 {
        font-size: 2.5rem;
    }
    .sub-banner {
        flex-direction: column;
        text-align: center;
    }
    .sub-image {
        text-align: center;
    }

    .phone-group label {
        justify-content: center;
    }
    .contact-container {
        padding: 40px 20px;
    }

    .btn-contact {
        align-self: stretch;
        text-align: center;
    }
}