/* ===============================
   GLOBAL
================================ */

html, body {
    height:100%;
}

body {
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

.page-section {
    flex:1;
}

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

a {
    text-decoration:none;
    color:inherit;
}

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

header {
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:100;
    background:#fff;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

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

header h2 {
    margin:0;
    font-size:20px;
    letter-spacing:2px;
}

header ul {
    list-style:none;
    display:flex;
    gap:30px;
    margin:0;
    padding:0;
}

header ul li a {
    font-size:16px;
    letter-spacing:1px;
    font-weight:500;
    transition:0.3s;
}

header ul li a:hover {
    opacity:0.6;
}

/* ===============================
   PAGE LAYOUT (FINAL CLEAN)
================================ */

.page-section {
    padding-top:140px;
}

.page-container {
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:80px;
    align-items:flex-start;
}

/* LEFT */

.page-content {
    width:60%;
}

.page-title {
    font-family:'Playfair Display', serif;
    font-size:70px;
    font-weight:400;
    margin-bottom:30px;
}

.page-body {
    font-size:15px;
    line-height:1.8;
    text-align:justify;
}

/* RIGHT */

.page-visual {
    width:40%;
    display:flex;
    justify-content:flex-end;
    padding: 10px;
}

.img-wrap {
    position:relative;
    display:inline-block;
}

.img-wrap::before {
    content:"";
    position:absolute;
    top:25px;
    left:-30px;
    width:100%;
    height:100%;
    background:#eae6dc;
    z-index:1;
}

.img-wrap img {
    position:relative;
    display:block;
    width:100%;
    max-width:480px;
    height:auto;
    z-index:2;
    box-shadow:0 40px 80px rgba(0,0,0,.15);
}

/* ===============================
   YOUTUBE & GALLERY
================================ */

.youtube-section,
.gallery-section {
    padding:100px 0;
    background:#f7f7f7;
}

.yt-grid,
.gallery-grid {
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.yt-grid iframe {
    width:100%;
    height:250px;
    border-radius:10px;
}

.gallery-grid img {
    width:100%;
    border-radius:8px;
}

/* ===============================
   FOOTER
================================ */

.site-footer {
    background:#111;
    color:#fff;
    padding:60px 0 20px;
    margin-top:80px;
}

.copyright {
    text-align:center;
    margin-top:30px;
    opacity:0.6;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:1000px){

    .page-container{
        flex-direction:column;
    }

    .page-content,
    .page-visual{
        width:100%;
    }

    .page-title{
        font-size:42px;
    }

    .img-wrap img{
        max-width:100%;
    }

    .yt-grid,
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    header .container {
        flex-direction:column;
        gap:15px;
    }

    header ul {
        gap:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .page-title{
        font-size:32px;
    }

    .yt-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }
}