/*
Theme Name: AlterEgo Band
Theme URI: https://alterego-bl.com
Description: Custom WordPress theme for AlterEgo band from Banja Luka. Multilingual support for Serbian (Cyrillic), Bosnian, English, and German.
Author: AlterEgo Development Team
Author URI: https://alterego-bl.com
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alterego
Domain Path: /languages
Tags: music, band, multilingual, custom, responsive

AlterEgo Band Theme, Copyright 2025
AlterEgo Band Theme is distributed under the terms of the GNU GPL
*/

/*
=============================================================
TABLE OF CONTENTS:
=============================================================
1. CSS Reset & Normalize
2. Typography
3. Layout & Grid
4. Header & Navigation
5. Footer
6. Components
7. Pages
8. Responsive Design
9. Utilities
=============================================================
*/

/* =============================================================
   1. CSS RESET & NORMALIZE
   ============================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* =============================================================
   2. TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* =============================================================
   3. LAYOUT & GRID
   ============================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* =============================================================
   4. HEADER & NAVIGATION
   ============================================================= */
.site-header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
}

.main-navigation a:hover {
    color: #f0f0f0;
    opacity: 0.8;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.language-switcher a {
    padding: 0.25rem 0.5rem;
    border: 1px solid #fff;
    border-radius: 3px;
    font-size: 0.875rem;
}

.language-switcher a.active {
    background: #fff;
    color: #000;
}

/* =============================================================
   5. FOOTER
   ============================================================= */
.site-footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* =============================================================
   6. COMPONENTS
   ============================================================= */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background: transparent;
    color: #000;
}

.btn-primary {
    background: #007bff;
    border-color: #007bff;
}

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

/* =============================================================
   7. PAGES
   ============================================================= */
.page-header {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-content {
    padding: 3rem 0;
}

/* =============================================================
   8. RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }

    .row {
        flex-direction: column;
    }
}

/* =============================================================
   9. UTILITIES
   ============================================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
