/* MIKHAIL FROMOZ OFFICIAL WEBSITE
   style.css v2.0 */

/* VARIABLES */
:root{
    --bg:#faf8f3;
    --surface:#fff;
    --text:#2b2b2b;
    --muted:#666;
    --gold:#b08a3e;
    --gold-dark:#8c6b2d;
    --border:#e7e2d7;
    --max-width:1200px;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
    font-family:'Montserrat',Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;}
a{text-decoration:none;color:inherit;}
.container{width:min(92%,var(--max-width));margin:0 auto;}

/* HEADER */
header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(250,248,243,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
}
.navbar{display:flex;justify-content:space-between;align-items:center;min-height:78px;}
.logo{font-family:'Montserrat',sans-serif;font-size:2rem;color:var(--gold);}
nav ul{display:flex;gap:2rem;list-style:none;}

/* HERO */
.hero{
    position:relative;
    min-height:92vh;
    display:flex;
    align-items:center;
    background:url('../images/hero-background.jpg') center/cover no-repeat;
}
.hero:before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.42);
}
.hero-content{position:relative;z-index:2;max-width:760px;color:#fff;}
.hero h1{font-family:'Montserrat',sans-serif;font-size:4.4rem;font-weight:800;line-height:1.08;margin-bottom:20px;}
.hero h2{font-size:1.25rem;font-weight:500;margin-bottom:36px;}
.hero p{margin-bottom:14px;}

/* BUTTONS */
.button{
    display:inline-block;
    margin-top:30px;
    padding:16px 34px;
    border-radius:50px;
    background:var(--gold);
    color:#fff;
    transition:.3s;
}
.button:hover{background:var(--gold-dark);}

/* SECTIONS */
section{padding:70px 0;}
.section-title{text-align:center;font-family:'Montserrat',sans-serif;font-size:3rem;margin-bottom:20px;}
.section-subtitle{text-align:center;color:var(--muted);max-width:760px;margin:0 auto 50px;}

/* RELEASE */
.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:40px;
    box-shadow:var(--shadow);
}
.release{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:50px;
    align-items:center;
}
.release-cover{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.18);
}
.release-cover img{width:100%;}
.song-title{font-family:'Cormorant Garamond',serif;font-size:2.6rem;margin-bottom:8px;}
.song-translation{font-size:1.25rem;font-style:italic;color:#777;margin-bottom:34px;}

/* STREAMING */
.streaming{display:flex;flex-wrap:wrap;gap:12px;margin-top:25px;}
.streaming a{
    min-width:150px;
    padding:14px 22px;
    text-align:center;
    border:1px solid var(--gold);
    border-radius:35px;
    color:var(--gold);
    transition:.3s;
}
.streaming a:hover{background:var(--gold);color:#fff;}

/* FOOTER */
footer{background:#1f1f1f;color:#ddd;text-align:center;padding:60px 20px;}

/* RESPONSIVE */
@media (max-width:900px){
.hero h1{font-size:3rem;}
.release{grid-template-columns:1fr;}
.navbar{flex-direction:column;}
nav ul{flex-wrap:wrap;justify-content:center;}
}
@media (max-width:600px){
.hero h1{font-size:2.3rem;}
.button{display:block;text-align:center;}
}
/* ==========================================================
   BIOGRAPHY PAGE
   ========================================================== */

.biography-layout{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:60px;

    align-items:center;

}

.biography-photo{

    position:sticky;
    top:120px;

}

.biography-photo img{

    width:100%;

    border-radius:18px;

    box-shadow:0 12px 35px rgba(0,0,0,.18);

}

.biography-text h2{

    margin-bottom:20px;

}

.biography-text p{

    margin-bottom:22px;

}

/* ---------- Mobile ---------- */

@media (max-width:900px){

.biography-layout{

    grid-template-columns:1fr;

}

.biography-photo{

    position:static;

    max-width:420px;

    margin:0 auto 40px;

}

}
/* ==========================================================
   GALLERY
========================================================== */

.page-title{
    text-align:center;
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
}

.page-intro{
    text-align:center;
    color:var(--muted);
    font-size:1rem;
    line-height:1.8;
    max-width:600px;
    margin:0 auto 70px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
    max-width:900px;
    margin:0 auto;
}

.gallery-item{
    display:block;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.gallery-item img{
    width:100%;
    display:block;
    transition:transform .35s ease, filter .35s ease;
}

.gallery-item:hover img{
    transform:scale(1.03);
    filter:brightness(.9);
}

.gallery-item:hover{
    box-shadow:0 16px 40px rgba(0,0,0,.15);
}

@media(max-width:800px){

.gallery-grid{
    grid-template-columns:1fr;
    gap:35px;
    max-width:420px;
}

}
/* ==========================================================
   CONTACT
========================================================== */

.contact-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: -10px;
    color: var(--text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all .3s ease;
}

.contact-form textarea {
    min-height: 220px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(176,138,62,.15);
}

.contact-form button {
    align-self: center;
    margin-top: 10px;
padding:16px 40px;

    font-size:1rem;
}

/* Mobile */

@media (max-width:900px) {

    .contact-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        max-width: 100%;
    }

    .contact-form button {
        width: 100%;
    }

}