/* Navbar Styles */
.navbar-main {
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.navbar-brand {
    color: #FF8C42 !important;
    font-size: 1.5rem;
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: #FFF4ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C42;
}

.nav-link {
    color: #4a5568 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: #FF8C42 !important;
}

.action-icon {
    color: #4a5568;
    font-size: 1.25rem;
    margin: 0 0.5rem;
    text-decoration: none;
}

.action-icon:hover {
    color: #FF8C42;
}

.btn-register {
    background: #FF8C42;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 1rem;
}

.btn-register:hover {
    background: #F97316;
    color: white;
}

/* Home Page Styles */
.hero-section {
    background: white;
    color: #1a202c;
    padding: 80px 0 !important;
}

.hero-section h1 {
    color: #1a202c;
}

.hero-section .text-primary {
    color: #FF8C42 !important;
}

.search-box {
    max-width: 700px;
}

.search-box .input-group {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
}

.search-box .form-control {
    border: none;
    padding: 15px;
    font-size: 16px;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.stats-row h3 {
    color: #FF8C42 !important;
}

.featured-section {
    background: #f8f9fa;
}

.domain-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.domain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.domain-icon {
    width: 48px;
    height: 48px;
    background: #FFF4ED;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FF8C42;
}

.badge-trending {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.domain-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

.domain-card .view-details {
    color: #FF8C42;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.domain-card .view-details:hover {
    text-decoration: underline;
}

/* Why Choose Section */
.why-choose-section {
    background: white;
}

.feature-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #FFF4ED;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FF8C42;
}

.cta-section {
    background: #f8f9fa;
}

.cta-box {
    background: linear-gradient(135deg, #FF8C42 0%, #F97316 100%);
    border-radius: 16px;
}

.btn-primary {
    background: #FF8C42;
    border-color: #FF8C42;
    padding: 12px 32px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #F97316;
    border-color: #F97316;
}

.btn-outline-primary {
    color: #FF8C42;
    border-color: #FF8C42;
    padding: 12px 32px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: #FF8C42;
    border-color: #FF8C42;
    color: white;
}

/* Dashboard Button Animations - All buttons have same hover effect */
.btn-outline-secondary,
.btn[style*="background-color: #ff6b35"] {
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover,
.btn[style*="background-color: #ff6b35"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
}

.footer .brand-icon {
    width: 32px;
    height: 32px;
    background: #FFF4ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C42;
}

.footer .text-primary {
    color: #FF8C42 !important;
}

.footer a:hover {
    color: #FF8C42 !important;
}
