/* 
 * Amagi Radio - Main CSS Stylesheet
 * Brazilian Radio Broadcasting Website
 */

/* Base Styles and Reset */
:root {
    --primary: #9147ff;      /* Purple main color */
    --primary-dark: #7030cc; /* Darker purple */
    --secondary: #333333;    /* Dark gray */
    --accent: #f39c12;       /* Amber accent */
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a1a;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --border-radius: 0.5rem;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary);
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

/* Header Styles */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--spacing-xs) 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

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

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: var(--spacing-md);
}

.nav-list a {
    color: var(--secondary);
    font-weight: 600;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--secondary);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, rgba(145, 71, 255, 0.1), rgba(255, 255, 255, 0));
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* Solutions Section */
.solutions-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    position: relative;
    padding-bottom: var(--spacing-xs);
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.solution-card {
    background-color: #fff;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.solution-icon {
    margin-bottom: var(--spacing-sm);
}

/* Features Section */
.features-section {
    padding: var(--spacing-lg) 0;
    background-color: rgba(145, 71, 255, 0.05);
}

.features-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.features-list svg {
    margin-right: var(--spacing-xs);
    flex-shrink: 0;
}

/* Entertainment Section */
.entertainment-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.entertainment-card {
    background-color: #fff;
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card-icon {
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.gaming-links,
.news-links {
    margin-top: var(--spacing-sm);
}

.gaming-links li,
.news-links li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.gaming-links li:last-child,
.news-links li:last-child {
    border-bottom: none;
}

.gaming-links a,
.news-links a {
    font-weight: 700;
}

/* Footer */
.site-footer {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
    margin-top: var(--spacing-xs);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

address p {
    margin-bottom: var(--spacing-xs);
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.8;
}

address a {
    color: var(--text-light);
}

address a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section .container,
    .features-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-list li {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image,
    .features-image {
        margin: 0 auto;
        max-width: 70%;
        order: 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: var(--spacing-sm) 0;
    }
    
    .entertainment-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: var(--spacing-xs);
    }
    
    .solution-card,
    .entertainment-card {
        padding: var(--spacing-sm);
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
}
