/* ===================================================
   AJS. BLUODEON
   Studio Muzyczne
   style.css
=================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#111;
    color:#fff;
}

/* ===========================================
   HERO
=========================================== */

.hero{
    width:100%;
    height:100vh;
    background-image:url("Images/Background/background-01.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.15);
    display:flex;
    justify-content:center;
    align-items:center;
}

/* ===========================================
   HEADER
=========================================== */

header{
    width:100%;
    position:absolute;
    top:0;
    left:0;
    padding:35px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.logo h1{
    color:#fff;
    font-size:34px;
    letter-spacing:5px;
    font-weight:300;
}

.line{
    width:230px;
    height:2px;
    background:#fff;
    margin:8px 0;
}

/* ===========================================
   MENU
=========================================== */

nav ul{
    display:flex;
    list-style:none;
}

nav li{
    margin-left:40px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.35s;
}

nav a:hover{
    color:#d8b25a;
}

/* ===========================================
   STUDIO MUZYCZNE
=========================================== */

.hero-title{
    font-size:110px;
    font-weight:300;
    letter-spacing:6px;
    color:transparent;
    -webkit-text-stroke:2px #ffffff;
    text-stroke:2px #ffffff;
    text-shadow:
        0 0 8px rgba(255,255,255,.25),
        0 0 20px rgba(0,0,0,.55);
    animation:studioTitle 1.8s ease-out forwards;
}

@keyframes studioTitle{
    0%{
        transform:scale(.15);
        opacity:0;
    }

    70%{
        transform:scale(1.05);
        opacity:1;
    }

    100%{
        transform:scale(.77);
        opacity:1;
    }
}

/* ===========================================
   PRZYCISKI POD BANEREM
=========================================== */

.hero-buttons{
    padding:35px 0;
    text-align:center;
    background:#111;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:25px;
}

.btn{
    padding:16px 36px;
    background:#d8b25a;
    color:#111;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
    transition:.35s;
}

.btn:hover{
    transform:translateY(-4px);
}

.btn-outline{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

/* ===========================================
   SEKCJE
=========================================== */

.about,
.offer{
    padding:100px 0;
}

.container{
    width:1200px;
    max-width:92%;
    margin:auto;
}

.about h2,
.offer h2{
    text-align:center;
    font-size:42px;
    margin-bottom:35px;
}

.about p{
    max-width:900px;
    margin:25px auto;
    text-align:center;
    line-height:1.8;
    font-size:21px;
}

/* ===========================================
   KARTY
=========================================== */

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.card{
    background:#1c1c1c;
    padding:40px;
    border-radius:12px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#d8b25a;
    margin-bottom:20px;
    font-size:28px;
}

.card p{
    line-height:1.7;
    margin-bottom:18px;
}

.card a{
    color:#d8b25a;
    text-decoration:none;
    font-weight:bold;
}

.card a:hover{
    color:#ffffff;
}

/* ===========================================
   STOPKA
=========================================== */

footer{
    background:#090909;
    text-align:center;
    padding:35px;
    color:#888;
}

/* ===========================================
   TELEFONY
=========================================== */

@media(max-width:900px){
    header{
        flex-direction:column;
        padding:25px 20px;
    }

    nav ul{
        flex-direction:column;
        margin-top:30px;
        text-align:center;
    }

    nav li{
        margin:10px 0;
    }

    .hero-title{
        font-size:58px;
    }

    .buttons{
        flex-direction:column;
        align-items:center;
    }

    .cards{
        grid-template-columns:1fr;
    }
}