/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    /* Soft, elegant blush cream background sampled directly from your logo */
    background: radial-gradient(circle at center, #fee6d9 0%, #fee6d9 100%);
    color: #4A3329; /* Deep chocolate brown text matching the 'KRAVE' font */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    margin-top: -10px;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 10px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 90vh;
}

/* Logo Area - Seamless integration */
.logo-container {
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 280px; /* Slightly larger so the tagline 'Made to be remembered' reads clearly */
    height: auto;
}

/* Typography */
.content {
    animation: fadeIn 1.5s ease-out;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #4A3329;
}

.tagline span {
    color: #D38B75; /* Soft rose/coral accent pulled from the logo's flower */
    font-style: italic;
}

.subtext {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
    color: #61463B;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Glassmorphism Countdown Timer - Tuned for light background */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3.5rem;
}

.time-box {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 18px 22px;
    border-radius: 16px;
    min-width: 95px;
    box-shadow: 0 8px 24px rgba(74, 51, 41, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-box:hover {
    transform: translateY(-4px);
    border-color: #D38B75;
}

.time-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #4A3329;
}

.time-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8C6F64;
    font-weight: 600;
}

/* Form Styling */
.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(74, 51, 41, 0.06);
}

.input-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subscribe-form input {
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 24px;
    color: #4A3329;
    font-size: 1rem;
    width: 68%;
    font-family: 'Montserrat', sans-serif;
}

.subscribe-form input::placeholder {
    color: #A68E85;
}

.subscribe-form button {
    background: #4A3329; /* Solid elegant brown matching logo brand text */
    color: #FDF4EE;
    border: none;
    outline: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background: #D38B75;
    box-shadow: 0 4px 15px rgba(211, 139, 117, 0.3);
}

.form-message {
    font-size: 0.95rem;
    margin-top: 15px;
    display: none;
    font-weight: 600;
}
.form-message.success { color: #4E8452; display: block; }
.form-message.error { color: #C04848; display: block; }

/* Vertical Centered Footer Structure matching Screenshot 2026-06-19 at 8.49.38 PM.png */
.site-footer {
    width: 100%;
    max-width: 320px;
    margin-top: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 2s ease-out;
}

.follow-us-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A68E85;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

/* Circular Instagram Button Styling */
.footer-socials-circle {
    margin-bottom: 1.8rem;
}

.insta-circle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(74, 51, 41, 0.2); /* Soft brown border */
    background: transparent;
    color: #4A3329; /* Matches your brand brown */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.insta-circle-btn:hover {
    background: #4A3329;
    color: #FDF4EE; /* Inverts beautifully on hover */
    border-color: #4A3329;
    transform: scale(1.05);
}

/* Thin horizontal section lines */
.footer-line {
    width: 100%;
    max-width: 130px;
    height: 1px;
    background-color: rgba(74, 51, 41, 0.25);
    margin: 0 auto;
}

/* Main stacked link stack */
.footer-vertical-menu {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 0;
}

.menu-link {
    font-size: 1.35rem; /* Clean, bold layout presence */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4A3329;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s ease, tracking 0.2s ease;
}

.menu-link:hover {
    color: #D38B75; /* Soft rose highlight color from your logo flower */
}

/* Bottom fine print styles */
.footer-policy-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1.8rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A68E85;
}

.policy-dot {
    font-size: 0.5rem;
    opacity: 0.5;
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .site-footer {
        margin-top: 3rem;
    }
    .menu-link {
        font-size: 1.15rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .tagline { font-size: 1.9rem; }
    .countdown-container { gap: 10px; }
    .time-box { min-width: 75px; padding: 12px 8px; }
    .time-num { font-size: 1.6rem; }
    .subscribe-form { border-radius: 20px; padding: 10px; }
    .input-group { flex-direction: column; gap: 10px; }
    .subscribe-form input { width: 100%; text-align: center; }
    .subscribe-form button { width: 100%; border-radius: 14px; }
}