/* --- FILE: style.css --- */
:root {
    /* Core Agency Palette */
    --bg-light: #FCFCFC;    /* Clean White */
    --accent-mint: #83FFE6; /* Cyan / Mint */
    --accent-coral: #FF5F5F; /* Red / Coral */
    --text-dark: #2C2C2C;   /* Dark Slate */
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f0f0 100%);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero h1 span {
    color: var(--accent-coral);
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: #555;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-coral);
    color: var(--bg-light);
    box-shadow: 0 4px 15px rgba(255, 95, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 95, 95, 0.4);
}

.btn-secondary {
    background-color: var(--accent-mint);
    color: var(--text-dark);
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(131, 255, 230, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 255, 230, 0.4);
}
/* --- DOMAIN SEARCH SECTION --- */
.search-section {
    padding: 5rem 2rem;
    background-color: var(--text-dark);
    color: var(--bg-light);
    text-align: center;
}

.search-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-mint);
}

.search-box {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0.5rem;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 50px 0 0 50px;
    outline: none;
    color: var(--text-dark);
}

.search-box .btn {
    margin-left: 0;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}
