/* ===========================
   GLOBAL RESET & BASE STYLES
   =========================== */

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

body {
    font-family: 'Poppins', sans-serif;
    background: #0D0D0D;
    color: #FFFFFF;
    position: relative;
    overflow-x: hidden;
}

/* ===========================
   NAVBAR
   =========================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 180px;
    width: auto;
    cursor: pointer;
    filter: drop-shadow(0 0 12px #1A73E8);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.07);
    filter: drop-shadow(0 0 22px #1A73E8);
}

.nav-links a {
    color: #FFFFFF;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #1A73E8;
    box-shadow: 0 0 10px #1A73E8;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #1A73E8;
}

/* ===========================
   PAGE LAYOUT
   =========================== */

.page {
    padding-top: 140px;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at top, #1A73E8 0, #0D0D0D 55%);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    text-shadow: 0 0 20px #1A73E8;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 650px;
    opacity: 0.85;
}

.cta-btn {
    margin-top: 25px;
    padding: 14px 32px;
    background: #1A73E8;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px #1A73E8;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #1A73E8;
}

/* ===========================
   SECTIONS
   =========================== */

.section {
    padding: 80px 50px;
}

.section.dark {
    background: #111111;
}

.section.darker {
    background: #0D0D0D;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px #1A73E8;
}

.section p.section-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
    opacity: 0.85;
}

/* ===========================
   FEATURES
   =========================== */

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.feature-box {
    width: 300px;
    padding: 25px;
    background: #1F1F1F;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 15px rgba(26,115,232,0.2);
}

.feature-box h3 {
    color: #1A73E8;
    margin-bottom: 10px;
}

/* ===========================
   PRICING
   =========================== */

.pricing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.pricing-card {
    width: 280px;
    padding: 30px 25px;
    background: #1F1F1F;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 0 18px rgba(26,115,232,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 28px rgba(26,115,232,0.5);
}

.pricing-card h3 {
    margin-bottom: 10px;
    color: #1A73E8;
}

.price {
    font-size: 2rem;
    margin: 10px 0 5px 0;
}

.price span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    font-size: 0.95rem;
    opacity: 0.9;
}

.pricing-card ul li {
    margin-bottom: 8px;
}

.btn-outline {
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid #1A73E8;
    background: transparent;
    color: #FFFFFF;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #1A73E8;
    box-shadow: 0 0 18px #1A73E8;
}

/* ===========================
   DOMAIN SEARCH
   =========================== */

.domain-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.domain-input-row {
    display: flex;
    margin-top: 20px;
}

.domain-input-row input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 8px 0 0 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    outline: none;
}

.domain-input-row button {
    padding: 12px 18px;
    border-radius: 0 8px 8px 0;
    border: none;
    background: #1A73E8;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 12px #1A73E8;
}

.domain-input-row button:hover {
    box-shadow: 0 0 20px #1A73E8;
}

.domain-result {
    margin-top: 20px;
    font-size: 1rem;
}

.domain-result.available {
    color: #4CAF50;
}

.domain-result.taken {
    color: #FF5252;
}

/* ===========================
   ABOUT
   =========================== */

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

/* ===========================
   CONTACT
   =========================== */

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===========================
   FOOTER
   =========================== */

footer {
    padding: 25px;
    text-align: center;
    background: #111111;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        margin-top: 10px;
    }

    .section {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
}

/* ============================================================
   🔥 FUTURISTIC GLOBAL BACKGROUND SYSTEM (ALL PAGES)
   ============================================================ */

/* 1. Dark vignette for depth */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    z-index: -3;
    pointer-events: none;
}

/* 2. Glow aura behind the goblin */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("img/hostgoblin-logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 650px;
    opacity: 0.07;
    filter: drop-shadow(0 0 40px #1A73E8);
    z-index: -2;
    pointer-events: none;
    animation: spin 40s linear infinite, pulse 8s ease-in-out infinite;
}

/* 3. Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { opacity: 0.10; }
    50% { opacity: 0.20; }
    100% { opacity: 0.10; }
}
