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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    background: #070707;
    color: #ffffff;
}

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

img {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    min-height: 76px;
    padding: 18px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7, 7, 7, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.logo {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    position: relative;
    padding: 8px 0;
    font-size: 15px;
    color: #eeeeee;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    background: #d4af37;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* BUTTONS */

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 13px 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.primary-button {
    background: #d4af37;
    color: #111111;
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #ffffff;
}

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

.primary-button:hover {
    background: #ffffff;
}

.secondary-button:hover {
    border-color: #d4af37;
    color: #d4af37;
}

/* HERO */

.single-photo-hero {
    position: relative;
    min-height: 100vh;
    padding: 125px 7% 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.single-photo-hero::before {
    content: "";
    position: absolute;
    inset: -25px;
    z-index: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.08);
}

.single-photo-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.4) 100%
        );
}

.single-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    gap: 70px;
}

.single-hero-text {
    max-width: 690px;
}

.hero-label {
    margin-bottom: 18px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
}

.single-hero-text h1 {
    margin-bottom: 20px;
    font-size: clamp(60px, 8vw, 112px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: 3px;
}

.hero-subtitle {
    margin-bottom: 15px;
    color: #f2f2f2;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-description {
    max-width: 570px;
    margin-bottom: 36px;
    color: #c8c8c8;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.single-hero-photo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.single-hero-photo img {
    width: 100%;
    max-width: 440px;
    max-height: 680px;
    display: block;
    object-fit: contain;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

/* GENERAL SECTIONS */

.section {
    padding: 110px 9%;
}

.dark-section {
    background: #101010;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-heading p {
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 8px;
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.15;
}

/* FAVOURITES / SONG LIST */

.song-list {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.song-card {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.song-card:hover {
    background: #1b1b1b;
    border-color: #d4af37;
    transform: translateY(-4px);
}

.song-info h3 {
    margin-bottom: 4px;
    font-size: 23px;
}

.song-info p {
    color: #999999;
    font-size: 15px;
}

.play-button {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d4af37;
    color: #111111;
    font-size: 20px;
    font-weight: 900;
}

/* COMING SOON */

.music-card {
    max-width: 1050px;
    margin: 0 auto;
    padding: 30px;
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 50px;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.09),
            transparent 50%
        ),
        #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.music-cover {
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0d0d;
    border-radius: 20px;
}

.music-cover img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    display: block;
    object-fit: contain;
}

.music-info .small-text {
    margin-bottom: 8px;
    color: #d4af37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.music-info h3 {
    margin-bottom: 16px;
    font-size: 41px;
    line-height: 1.2;
}

.music-info p {
    max-width: 570px;
    color: #bdbdbd;
    font-size: 17px;
}

.coming-soon-button {
    margin-top: 28px;
}

/* VIDEO */

.video-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
    background: #111111;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    transition: transform 0.35s ease;
}

.video-container:hover {
    transform: scale(1.01);
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
}

.section-button-wrap {
    margin-top: 38px;
    text-align: center;
}

/* PAGE HERO FOR OTHER PAGES */

.page-hero {
    padding: 165px 8% 75px;
    text-align: center;
    background:
        radial-gradient(
            circle at top,
            rgba(212, 175, 55, 0.13),
            transparent 35%
        ),
        #090909;
}

.page-hero h1 {
    margin: 8px 0 18px;
    font-size: clamp(50px, 8vw, 88px);
    line-height: 1;
}

.page-hero .hero-description {
    margin-right: auto;
    margin-left: auto;
}

/* ABOUT PAGE */

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 24px;
    color: #c7c7c7;
    font-size: 18px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* CONTACT PAGE */

.contact-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 45px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 23px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.38);
}

.contact-card h2 {
    margin-bottom: 30px;
    font-size: 35px;
    text-align: center;
}

.contact-link {
    min-height: 76px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #d2d2d2;
    font-size: 17px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-link:last-child {
    border-bottom: none;
}

.contact-link i {
    width: 32px;
    color: #d4af37;
    font-size: 24px;
    text-align: center;
}

.contact-link:hover {
    color: #ffffff;
    transform: translateX(6px);
}

/* GALLERY */

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 390px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.gallery-grid img:hover {
    filter: brightness(1.08);
    transform: scale(1.025);
}

/* FOOTER */

footer {
    padding: 38px 20px;
    text-align: center;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer p {
    color: #888888;
    font-size: 14px;
}

footer p:first-child {
    margin-bottom: 6px;
    color: #c2c2c2;
}

/* TABLET */

@media (max-width: 1050px) {
    .single-photo-hero {
        padding-top: 135px;
    }

    .single-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .single-hero-text {
        max-width: 760px;
        margin: 0 auto;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .single-hero-photo img {
        max-width: 520px;
        max-height: 720px;
    }

    .music-card {
        grid-template-columns: 1fr;
    }

    .music-cover {
        max-width: 540px;
        margin: 0 auto;
    }

    .music-info {
        text-align: center;
    }

    .music-info p {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 850px) {
    .nav-links {
        gap: 17px;
    }

    .nav-links a {
        font-size: 13px;
    }
}

/* MOBILE */

@media (max-width: 720px) {
    .navbar {
        min-height: 68px;
        padding: 16px 5%;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .single-photo-hero {
        min-height: auto;
        padding: 110px 5% 65px;
    }

    .single-hero-content {
        gap: 42px;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .single-hero-text h1 {
        font-size: 53px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 21px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .button {
        width: 100%;
    }

    .single-hero-photo img {
        width: 100%;
        max-width: 360px;
        max-height: 560px;
        border-radius: 20px;
    }

    .section {
        padding: 82px 6%;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: 39px;
    }

    .song-card {
        padding: 18px;
    }

    .song-info h3 {
        font-size: 19px;
    }

    .play-button {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .music-card {
        padding: 18px;
        gap: 32px;
    }

    .music-cover {
        min-height: 330px;
    }

    .music-info h3 {
        font-size: 32px;
    }

    .page-hero {
        padding: 135px 6% 65px;
    }

    .contact-card {
        padding: 24px 18px;
    }

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

    .gallery-grid img {
        height: auto;
        max-height: 560px;
        object-fit: contain;
        background: #111111;
    }
}

@media (max-width: 410px) {
    .single-hero-text h1 {
        font-size: 44px;
    }

    .section-heading h2 {
        font-size: 35px;
    }

    .music-cover {
        min-height: 290px;
    }

    .music-info h3 {
        font-size: 29px;
    }
}
/* COMPLETE CONTACT PAGE */

.contact-page-section {
    padding-top: 85px;
}

.contact-group {
    max-width: 950px;
    margin: 0 auto 90px;
}

.contact-group:last-child {
    margin-bottom: 0;
}

.contact-heading {
    margin-bottom: 38px;
}

.contact-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 12px 28px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.38);
}

.contact-link {
    min-height: 95px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.contact-link:last-child {
    border-bottom: none;
}

.contact-link > i {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    color: #d4af37;
    font-size: 23px;
}

.contact-link div {
    display: flex;
    flex-direction: column;
}

.contact-link strong {
    color: #ffffff;
    font-size: 18px;
}

.contact-link span {
    color: #aaaaaa;
    font-size: 16px;
    word-break: break-word;
}

.contact-link:hover {
    color: #d4af37;
    transform: translateX(7px);
}

/* SOCIAL CARDS */

.social-grid {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.social-card {
    min-height: 110px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.social-card > i {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4af37;
    border-radius: 50%;
    color: #111111;
    font-size: 25px;
}

.social-card div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.social-card strong {
    color: #ffffff;
    font-size: 19px;
}

.social-card span {
    overflow: hidden;
    color: #999999;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-card:hover {
    background: #1a1a1a;
    border-color: #d4af37;
    transform: translateY(-5px);
}

@media (max-width: 720px) {
    .contact-page-section {
        padding-top: 65px;
    }

    .contact-group {
        margin-bottom: 70px;
    }

    .contact-card {
        padding: 8px 18px;
    }

    .contact-link {
        min-height: 85px;
        gap: 15px;
    }

    .contact-link > i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .contact-link strong {
        font-size: 16px;
    }

    .contact-link span {
        font-size: 14px;
    }

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

    .social-card {
        min-height: 95px;
        padding: 20px;
    }

    .social-card > i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
/* ABOUT PAGE */

.about-section {
    background: #070707;
}

.about-container {
    width: min(1100px, 88%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-content {
    max-width: 600px;
}

.about-content .section-label {
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-content h2 {
    margin-bottom: 26px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
}

.about-content p {
    margin-bottom: 18px;
    color: #b5b5b5;
    font-size: 17px;
    line-height: 1.8;
}

.about-buttons {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 850px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 500px;
    }
}

@media (max-width: 550px) {
    .about-image img {
        height: 420px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
/* ==========================
   GALLERY
========================== */

.gallery-grid{

    width:min(1200px,90%);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

}

.gallery-grid img{

    width:100%;

    height:360px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.4s;

    box-shadow:0 15px 30px rgba(0,0,0,.35);

}

.gallery-grid img:hover{

    transform:translateY(-8px) scale(1.03);

    box-shadow:0 25px 45px rgba(0,0,0,.55);

}



/* ==========================
   LIGHTBOX
========================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

    animation:fadeIn .3s ease;

}

.lightbox.active{

    display:flex;

}

.lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:18px;

    box-shadow:0 20px 50px rgba(0,0,0,.7);

}

.close{

    position:absolute;

    top:25px;

    right:45px;

    color:white;

    font-size:60px;

    cursor:pointer;

    transition:.3s;

}

.close:hover{

    color:#d4af37;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@media(max-width:768px){

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-grid img{

    height:420px;

}

.close{

    right:25px;

    font-size:45px;

}

}
/* ===================================
   RESPONSIVE WEBSITE
=================================== */

/* Prevent horizontal scrolling */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* Images and videos stay inside screen */
img,
video,
iframe {
    max-width: 100%;
}

/* Main sections */
.section {
    padding: 90px 6%;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 20px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    white-space: nowrap;
}

/* Hero text */
.page-hero {
    padding-left: 6%;
    padding-right: 6%;
}

.page-hero h1 {
    font-size: clamp(42px, 7vw, 76px);
}

.hero-description {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Tablet and iPad */
@media (max-width: 1024px) {

    .navbar {
        padding: 18px 5%;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .section {
        padding: 75px 5%;
    }

    .about-container {
        gap: 40px;
    }

    .about-image img {
        height: 500px;
    }

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

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

/* Mobile navigation */
@media (max-width: 768px) {

    .navbar {
        padding: 16px 5%;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 23px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .page-hero {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .page-hero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .section {
        padding: 65px 5%;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 450px;
    }

    .about-content {
        text-align: center;
    }

    .about-buttons {
        justify-content: center;
    }

    .gallery-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-grid img {
        height: 420px;
    }

    .song-list {
        width: 100%;
    }

    .song-card {
        padding: 18px;
    }

    .contact-card {
        width: 100%;
    }

    .social-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    footer {
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .navbar {
        padding: 14px 4%;
    }

    .nav-links {
        gap: 8px 14px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .page-hero {
        padding-top: 165px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .section {
        padding: 55px 4%;
    }

    .gallery-grid img {
        height: 360px;
    }

    .about-image img {
        height: 390px;
    }

    .song-card {
        gap: 12px;
    }

    .song-info h3 {
        font-size: 17px;
    }

    .song-info p {
        font-size: 13px;
    }

    .contact-link,
    .social-card {
        padding: 16px;
    }

    .contact-link i,
    .social-card i {
        width: 48px;
        height: 48px;
        font-size: 20px;
        flex-shrink: 0;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-buttons .btn {
        width: 100%;
    }
}