/* Starhost Default Page Styles */
:root {
    --primary: #f37945;
    --primary-hover: #e06834;
    --dark: #0b0f19;
    --dark-lighter: #151b2b;
    --light: #ffffff;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: inline-block;
    width: 180px;
    height: 40px;
    /* Update the logo URL here to change it globally */
    background-image: url('https://mystarhost.com/images/starhost-logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    background-color: rgba(243, 121, 69, 0.05);
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 50;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(243, 121, 69, 0.05);
    color: var(--primary);
    padding-left: 24px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1e293b;
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:last-child {
    margin-bottom: 0;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0 0 0 16px;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Hamburger to X animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Hero Home */
.hero-home {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, rgba(243, 121, 69, 0.08) 0%, #ffffff 100%); /* Exact Starhost orange, no pink shift */
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Dynamic subtle background shapes */
.hero-home::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 70%;
    height: 180%;
    background: radial-gradient(circle, rgba(243, 121, 69, 0.20) 0%, rgba(243, 121, 69, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(243, 121, 69, 0.15) 0%, rgba(243, 121, 69, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    color: #F77F00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
}

.hero-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
}

.hero-description strong,
.hero-description a {
    color: #F77F00;
    text-decoration: none;
    font-weight: 600;
}

.hero-description a:hover {
    text-decoration: underline;
}

.pt-16 {
    padding-top: 64px;
}

/* Updated Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
    text-decoration: none;
    color: #111827;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-icon {
    margin-bottom: 16px;
}

.text-blue { color: #0056D2; }
.text-orange { color: #F77F00; }
.text-green { color: #16a34a; }
.text-purple { color: #9333ea; }

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    height: 40px; /* equivalent to h-10 */
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.learn-more {
    font-size: 14px;
    font-weight: 500;
    color: #2563eb;
}

.service-card:hover .learn-more {
    text-decoration: underline;
}

/* Owner Info */
.owner-info {
    background-color: #e2e8f0;
    padding: 20px 0;
    font-size: 14px;
    color: #475569;
}

.owner-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.owner-message strong {
    color: #1e293b;
}

.owner-message code {
    background: rgba(0,0,0,0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.host-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.host-links a:hover {
    text-decoration: underline;
}

/* Main Footer */
.main-footer {
    background-color: #000000;
    color: #d1d5db;
    margin-top: auto;
}

.footer-top {
    padding: 48px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column-group {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.mt-8 {
    margin-top: 32px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #000000;
    border-top: 1px solid #1f2937;
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
}

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.verbosec-footer-logo img {
    height: 24px;
    width: auto;
    display: block;
}

.separator {
    color: #6b7280;
}

.footer-policies a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-policies a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icons a {
    color: inherit;
    transition: color 0.2s ease;
    display: flex;
}

.social-icons a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 14px;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .domain-title {
        font-size: 36px;
    }
    
    .services-grid {
        margin-top: -40px;
        gap: 20px;
    }
    
    .hero {
        padding: 60px 0 100px;
    }
    
    .owner-info-content {
        flex-direction: column;
        text-align: center;
    }
}
