/* Hosterocean - Shared Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8faff;
}

/* Custom styles for gradients and shadows */
.hero-gradient {
    background: linear-gradient(135deg, #38006E 0%, #1A0A3D 100%);
}

.card-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.btn-primary {
    background-color: #FF6B33;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 51, 0.4);
    background-color: #e65e2e;
}

.btn-secondary {
    background-color: #4A5568;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 85, 104, 0.4);
    background-color: #2D3748;
}

.feature-icon {
    color: #FF6B33;
}

.text-hosterocean {
    color: #FF6B33;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; }
.animate-fade-in-up { animation-delay: 0s; }
.animate-slide-in-left { animation-delay: 0.4s; }
.animate-slide-in-right { animation-delay: 0.6s; }

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    background-color: #1A0A3D;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 400px;
    color: white;
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateY(0);
    opacity: 1;
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #38006E 0%, #1A0A3D 100%);
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #FF6B33;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Pricing card styles */
.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #FF6B33;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-badge {
    background: #FF6B33;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Domain search styles */
.domain-search {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.domain-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.domain-input:focus {
    outline: none;
    border-color: #FF6B33;
    box-shadow: 0 0 0 3px rgba(255, 107, 51, 0.1);
}

/* TLD grid */
.tld-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tld-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tld-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #FF6B33;
}

/* Responsive design */
@media (max-width: 1024px) {
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .pricing-card .text-6xl {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card h3 {
        font-size: 1.25rem;
    }
    
    .pricing-card .text-6xl {
        font-size: 2rem;
    }
    
    .pricing-card ul {
        font-size: 0.875rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .domain-search {
        padding: 2rem 1rem;
    }
    
    .tld-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-card .text-6xl {
        font-size: 1.75rem;
    }
    
    .pricing-card ul li {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }
}

/* Global pricing text size reduction */
.pricing-card .text-6xl {
    font-size: 2.5rem;
}

@media (min-width: 1024px) {
    .pricing-card .text-6xl {
        font-size: 3rem;
    }
}

