/* Homepage Hero Section */
.hero-section {
    background-image: url('../images/dark-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-btn {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 30px;
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    transition: all 0.3s ease;
}

/* Hero Domain Search Styles */
.hero-domain-search {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.domain-search-wrapper {
    margin-bottom: 15px;
}

.domain-input {
    height: 50px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px 0 0 5px;
    color: #333;
}

.domain-input:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    background: rgba(255, 255, 255, 1);
}

.domain-search-btn {
    height: 50px;
    padding: 0 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    border: 2px solid #28a745;
    background: #28a745;
    transition: all 0.3s ease;
}

.domain-search-btn:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-1px);
}

.input-group {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.hero-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}