/* --- Modern Global Styles & Typography --- */
:root {
    /* Color Palette - Minimalist & High Contrast */
    --primary-color: #e78e10; /* A clean, modern blue for focus */
    --accent-color: #28a745; /* A fresh green for secondary actions/success */
    --background-dark: #1f1f1f; /* Near-black background for a sleek look (Optional Dark Mode Feel) */
    --background-light: #ffffff;
    --text-color-light: #e0e0e0; /* Off-white for readability on dark backgrounds */
    --text-color-dark: #343a40; /* Dark gray for prose on light backgrounds */
    --border-color: #333333;
    --font-poppins: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-poppins);
    color: var(--text-color-light); /* Assuming a dark hero section */
    line-height: 1.6;
    background-color: var(--background-dark);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header & Logo - Clean & Unobtrusive --- */
.header {
    background-color: transparent; /* Overlaying the hero */
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.logo h1 {
    font-weight: 700;
    color: var(--background-light); /* White logo */
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* --- Hero Section - High Impact & Minimal --- */
.hero-section {
    position: relative;
    /* High-contrast background - Replace with a muted, high-quality image */
    background-image: url('homepage.png');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    animation: fadeIn 1.5s ease-out;
}

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

.hero-content {
    max-width: 700px;
    padding: 1rem;
    /* Remove heavy background box for a cleaner look */
}

.slogan {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--background-light);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px; /* Tighter spacing for a modern feel */
}

.slogan strong {
    color: var(--primary-color);
}

/* --- Call-to-Action Buttons - Clean & Ghosted --- */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 4px; /* Minimalist sharp corners */
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none; /* Keep it subtle */
    min-width: 250px;
    margin: 0 auto; /* Center individual buttons on mobile */
    border-width: 2px;
    border-radius: 20px;
    border-style: solid;
}

.btn .material-icons {
    margin-right: 12px;
    font-size: 1.3rem;
}

/* Primary Button (Call) - Solid, High Contrast */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: var(--background-light);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5); /* Subtle glowing effect */
    transform: translateY(-2px);
}

/* Secondary Button (Menu) - Ghost/Outline Style */
.btn-secondary {
    background-color: var(--background-light);
    color: var(--background-dark);
    border-color: var(--background-light);
}

.btn-secondary:hover {
    color: var(--background-dark); /* Outline color */
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5); /* Subtle glowing effect */
    transform: translateY(-2px);
}

/* --- Responsiveness for wider screens --- */
@media (min-width: 768px) {
    .header {
        padding: 2rem 8%;
    }

    .cta-buttons {
        flex-direction: row; /* Buttons side-by-side on desktop */
        justify-content: center;
        gap: 30px;
    }
    
    .btn {
        min-width: 200px;
    }
}