/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex; 
    align-items: center;    /* Vertically centers .hero-content-container */
    justify-content: center; /* Horizontally centers .hero-content-container */
    text-align: center; /* This centers text/inline elements within children (like p, h1). */
    color: white;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    padding-top: 64px; /* Accounts for fixed header */
}

/* Container for hero content to constrain its width */
.hero-content-container {
    width: 100%;
    max-width: 1440px; /* Limits the maximum width of your content */
    padding: 0 2rem; /* Adds horizontal padding for smaller screens */
    /* REMOVED: display: flex, align-items, justify-content from here. 
       The parent (.hero-section) is already centering this container. */
}

.hero-content {
    max-width: 800px; /* Limits the width of the content box itself */
    margin: 0 auto; /* THIS IS KEY: It centers the block-level .hero-content within its parent (.hero-content-container) */
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px); 
    border-radius: 20px;
    
}

/* Style for the buttons container */
.hero-buttons {
    margin-top: 2rem; /* Adds space above the buttons */
    display: flex;    /* Makes the div a flex container */
    justify-content: center; /* Centers the buttons horizontally within this div */
    gap: 1.5rem;      /* Adds space between the buttons */
    flex-wrap: wrap;  /* Allows buttons to wrap to the next line on smaller screens */
}


/* Hero Title Styling - Logo Style */
.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-title-word {
    font-weight: 300;
    letter-spacing: 0.2em;
}

.hero-title-dot {
    color: #00A3E4;
    font-weight: bold;
    margin: 0 0.5rem;
    font-size: 0.5em;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Enhanced Button Components */
.cta-button {
    display: inline-flex; /* Keep this as it styles the button content itself */
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--form-transition);
    box-shadow: 0 10px 30px rgba(0, 163, 228, 0.3);
    cursor: pointer;
}

.cta-button.secondary {
    background: none;
    border: 2px solid white;
    box-shadow: none;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}