﻿/* --- Reset i osnovni font --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #222;
    line-height: 1.6;
}

/* --- Header --- */
.header {
    background-color: #111;
    color: #fff;
    padding: 25px 40px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header h1 {
    font-size: 2.8em;
    letter-spacing: 2px;
}

/* --- Navigation Menu --- */
.nav {
    margin-top: 15px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #ff6600;
    transform: scale(1.05);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    color: #fff;
    text-align: center;
}

.hero img.album-cover {
    max-width: 350px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.hero img.album-cover:hover {
    transform: scale(1.05);
}

.hero h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.hero .btn {
    background-color: #ff6600;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
}

/* --- Music / Discography Section --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.song-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.song-card h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
    color: #111;
}

.song-card audio {
    width: 100%;
    margin-bottom: 10px;
}

.song-card p {
    margin-top: 10px;
    font-size: 0.95em;
}

/* --- About Section --- */
.about-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.about-section h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
}

.about-section p {
    max-width: 700px;
    margin: 0 auto 15px auto;
    font-size: 1.1em;
    color: #333;
}

/* --- Media Section --- */
.media-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.media-section iframe, .media-section video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* --- Footer --- */
.footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.95em;
}

.footer a {
    color: #ff6600;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    text-decoration: underline;
    color: #ff8533;
}

/* --- Responsive tweaks --- */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8em;
    }
    .hero img.album-cover {
        max-width: 250px;
    }
}

.contact-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
}

.contact-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background-color: #e65c00;
}

