/*
Theme Name: Host Station
Theme URI: https://new.hoststation.in
Author: Host Station
Description: Custom theme for Host Station.
Version: 1.0.0
Text Domain: hoststation
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #111827;
}

.hs-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.hs-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.hs-header .hs-container {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hs-logo a {
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    color: #173d78;
}

.hs-logo span {
    color: #d71920;
}

.hs-navigation ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.hs-navigation a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
}

.hs-hero {
    padding: 120px 0;
    background:
        linear-gradient(
            135deg,
            #07152b,
            #101f3d
        );
    color: #ffffff;
    text-align: center;
}

.hs-hero h1 {
    max-width: 850px;
    margin: 0 auto 20px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
}

.hs-hero h1 span {
    color: #6f6cff;
}

.hs-hero p {
    color: #aebbd0;
    font-size: 20px;
}

.hs-domain-search {
    max-width: 720px;
    margin: 40px auto 0;
    display: flex;
    background: #ffffff;
    padding: 8px;
    border-radius: 10px;
}

.hs-domain-search input {
    flex: 1;
    border: 0;
    outline: none;
    padding: 18px;
    font-size: 16px;
}

.hs-domain-search button {
    border: 0;
    padding: 0 30px;
    border-radius: 7px;
    background: #5b57e8;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.hs-services {
    padding: 100px 0;
}

.hs-services h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
}

.hs-service-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 25px;
}

.hs-service-card {
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

@media (max-width: 800px) {

    .hs-navigation {
        display: none;
    }

    .hs-service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 500px) {

    .hs-domain-search {
        flex-direction: column;
        gap: 10px;
    }

    .hs-domain-search button {
        padding: 18px;
    }

    .hs-service-grid {
        grid-template-columns: 1fr;
    }

}