/* style.css */

/* Centers everything perfectly on the screen */
body {
    background-color: #FAF9F6; /* Your signature off-white background */
    font-family: 'Inter', sans-serif;
    margin: 0;
    height: 100vh; /* Takes up 100% of the viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The clean white card layout */
.coming-soon-container {
    background-color: #FFFFFF;
    max-width: 600px;
    width: 90%; /* Ensures it doesn't touch the edges on mobile */
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft, modern shadow */
}

/* Your signature font for the header */
.logo-text {
    font-family: 'Caveat', cursive;
    color: #1B263B; /* Navy Blue */
    font-size: 4rem;
    margin: 0;
    letter-spacing: 2px;
}

/* Accent line */
.accent-line {
    border: none;
    height: 4px;
    width: 60px;
    background-color: #8ECAE6; /* Sky Blue */
    margin: 20px auto 30px auto;
    border-radius: 2px;
}

.coming-soon-container h2 {
    color: #1B263B;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.coming-soon-container p {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Styling for the buttons */
.action-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows buttons to stack on very small screens */
    gap: 15px;
}

.action-links a {
    display: inline-block;
    background-color: #1B263B; /* Navy buttons */
    color: #FAF9F6;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.action-links a:hover {
    background-color: #8ECAE6; /* Buttons turn sky blue on hover */
    color: #1B263B;
    transform: translateY(-2px); /* Slight lift effect */
}