:root {
    --burgundy: #1A669F;
    --burgundy-light: #2C8AD6;
    --burgundy-dark: #0D3A5D;
    --gold: #CFB53B;
    --gold-light: #F4D03F;
    --gold-dark: #997A00;
    --beige: #F5F0E1;
    --beige-light: #FAF8F2;
    --beige-dark: #D4C9A8;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--beige-light);
    color: var(--burgundy);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold) !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--beige) !important;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border: none;
    color: var(--gold-light);
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--burgundy-light), var(--burgundy));
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    color: var(--burgundy-dark);
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 181, 59, 0.3);
}

/* Cards */
.card {
    border: none;
    border-radius: 8px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

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

.card-header {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: var(--gold);
    border-radius: 8px 8px 0 0 !important;
    font-family: 'Playfair Display', serif;
    padding: 15px 20px;
}

/* Forms */
.form-control {
    border: 2px solid var(--beige-dark);
    border-radius: 10px;
    padding: 12px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(207, 181, 59, 0.25);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    color: var(--beige);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/images/africa-pattern.png') center/cover;
    opacity: 0.1;
}

.hero h1 {
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    color: var(--beige);
    font-size: 1.2rem;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid var(--beige-dark);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    background: white;
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--beige), white);
    transform: scale(1.05);
}

.pricing-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--burgundy);
    margin: 20px 0;
}

.pricing-card .currency {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Features List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--beige-dark);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--gold);
    margin-right: 10px;
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
    text-align: center;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: var(--burgundy-dark);
    color: var(--beige);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.footer a {
    color: var(--beige);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--gold);
}

/* Dashboard */
.dashboard-stats {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--burgundy);
}

.stat-label {
    color: var(--burgundy-light);
    font-weight: 500;
}

/* Domain Search */
.domain-search {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.domain-search input {
    border: 2px solid var(--beige-dark);
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1.1rem;
}

.domain-search .btn {
    border-radius: 50px;
    padding: 15px 35px;
}

/* Alerts */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .auth-card {
        padding: 20px;
    }
}



