/* DivineVines Landing Page Styling */

/* Use the theme variables from your main CSS */
:root {
    --olive: #556B2F;
    --light-olive: #6B8E23;
    --off-white: #F5F5F5;
    --dark-olive: #3A4D1F;
    --accent: #8A9A5B;
}

/* Landing page specific styling */
.landing-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--dark-olive);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.landing-container h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--off-white);
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

.landing-container p {
    font-size: 1.2rem;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.landing-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Remove the filter that inverts images, since you likely want to see the actual wine image */
    filter: none;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-contact {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent);
    color: var(--off-white);
    border: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: var(--light-olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}

.reset-link-box {
    margin-top: 20px;
    padding: 10px;
    border: 1px dashed #ccc;
}

.reset-link-box input {
    width: 100%;
    padding: 8px;
    font-family: monospace;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-container {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .landing-container h1 {
        font-size: 2.2rem;
    }

    .landing-container p {
        font-size: 1rem;
    }

    .button-row {
        flex-direction: column;
        gap: 15px;
    }

    .btn-contact {
        width: 100%;
    }
}

.faq-contact-button {
    margin-top: 30px;
    text-align: center;
}

.faq-contact-button .btn-contact {
    padding: 10px 20px;
    font-size: 16px;
}

.button.white-text {
    color: white !important;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #5e0b15;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.5rem;
}

.faq-category-title {
    font-size: 1.8rem;
    margin-top: 2rem;
    font-family: 'Lora', serif;
    color: #7b3f00;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 5px solid #7b3f00;
    border-radius: 8px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 1rem;
    color: #333;
    margin-left: 1rem;
}

.faq-note {
    margin-top: 2rem;
    font-style: italic;
    color: #555;
}

.faq-contact-button {
    margin-top: 1rem;
}

.elegant-button {
    background-color: #7b3f00;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.elegant-button:hover {
    background-color: #5e0b15;
    color: #fff;
}

.urgent-contact {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #222;
}

