/* ============================================
   Landing Page
   Whiskey image as a full-screen background 
   with a dark overlay, quote on top in white.
   Moody, immersive, rustic.
   ============================================ */

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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: url('../images/whiskey-drink.png') center center / cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for text readability */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 8, 0.55);
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 2rem 1.5rem;
    max-width: 580px;
    margin-left: 10vw;
    animation: fadeIn 1.5s ease both;
    animation-delay: 0.3s;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 1.5rem;
    z-index: 1;
    animation: fadeIn 1.5s ease both;
    animation-delay: 1s;
}

footer p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

blockquote {
    margin-bottom: 3.5rem;
}

blockquote p {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    line-height: 1.6;
    color: #F5F0EB;
    letter-spacing: 0.01em;
    max-width: 580px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

blockquote cite {
    display: block;
    margin-top: 1.5rem;
    font-family: Georgia, "Times New Roman", serif;
    font-style: normal;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

blockquote cite::before {
    content: "— ";
}

.coming-soon {
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.35);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    main { padding: 2rem 1.25rem; margin-left: 0; transform: none; }
    blockquote { margin-bottom: 2.5rem; }
}

@media (min-width: 1600px) {
    main { max-width: 720px; }
}
