/* style.css */

/* 1. Global Reset & Body Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif; /* Use the minimal font from HTML */
    background-color: #ffffff; /* Stark white background */
    color: #000000; /* Deep black text */
    text-align: center; /* Center all contents */
    line-height: 1.6;
}

/* 2. Header Styles */
header {
    padding: 60px 20px; /* Space above and below logo */
}

.logo {
    max-width: 150px; /* Adjust based on your logo design */
    height: auto;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 2px; /* Slight letter spacing for a premium feel */
    margin-top: 10px;
    font-weight: 400;
}

/* 3. Hero Section Styles */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh; /* Takes up 60% of the viewport height */
    padding: 20px;
}

.headline {
    font-size: 3rem; /* Very large and bold */
    font-weight: 700;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 1.2rem;
    max-width: 600px; /* Limits width for readability */
    margin-bottom: 40px;
    font-weight: 400;
}

/* 4. CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: #000000; /* Black button */
    color: #ffffff; /* White text */
    padding: 15px 40px; /* Large clickable area */
    text-decoration: none; /* Removes underline from the link */
    font-weight: 700;
    border-radius: 0; /* Sharp corners for maximum minimalism */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.cta-button:hover {
    background-color: #333333; /* Dark gray hover state */
}

/* 5. Footer Styles */
footer {
    padding: 40px 20px;
    font-size: 0.8rem;
    border-top: 1px solid #eaeaea; /* Very light subtle separator */
}