/* ========================================
   Public Pages Shared Styles
   Used by: Features, Pricing, About, Contact, Lyrics
   ======================================== */

:root {
    --primary-color: #FF6B35;
    --secondary-color: #1a1a1a;
    --accent-color: #4ECDC4;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--light-bg);
}

/* ========== NAVIGATION ========== */
.navbar-custom {
    background: var(--secondary-color);
    padding: 1rem 0;
}

.navbar-custom .navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-custom .nav-link {
    color: white !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-custom .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO SECTIONS ========== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    font-size: 1.25rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: #e55a2a;
    color: white;
}

.btn-primary-custom.btn-sm {
    padding: 8px 20px;
    font-size: 1rem;
}

.btn-primary-custom.btn-lg {
    padding: 15px 40px;
    font-size: 1.25rem;
}

/* ========== SECTION TITLES ========== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

/* ========== FOOTER ========== */
footer {
    background: var(--secondary-color);
    color: white;
    padding: 40px 0;
}

footer h5 {
    color: white;
    margin-bottom: 1rem;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

footer .list-unstyled {
    padding-left: 0;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-custom .nav-link {
        margin: 0.5rem 0;
    }
}
