html {
    scroll-behavior: smooth;
    font-size: 18px; /* Base font size */
    height: 100%;
    margin: 0;
}
body{
    padding: 0;
    margin: 0;
    background: #111;

}

main{
    flex: 1;
    margin: 0 auto;

}

/* #region Fonts */
@font-face {
    font-family: tu-title-font;
    src: url("../static/fonts/tt_drugs/TT\ Drugs\ Trial\ Condensed\ Bold.otf") format('truetype');
}
@font-face {
    font-family: out-now-font;
    src: url("../static/fonts/Georgia\ Pro/GeorgiaPro-Italic.ttf") format('truetype');
}
/* #endregion Fonts */

/* #region Nav-bar */
.nav-container{
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;              /* Full width */
    z-index: 1001;            /* So it stays on top of other elements */
}

nav{
    margin: auto;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 30px;
    background: #111;
    height: 78px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.left-nav, .centre-nav, .right-nav{
    flex:1;
    display: flex;
}

.left-nav{
    justify-content: flex-start;
    align-items: center;
    color: #F2EEE3;
    font-family: "Ancizar Serif", serif;
    font-weight:100;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Central Logo Will stay same on all the devices */
.centre-nav{
    justify-content: center;
    font-size: 40px;
    font-family: "Special Gothic Condensed One", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 8px;
}

.nav-buttons{
    padding: 8px 8px 8px 8px;
}

.right-nav{
    justify-content: flex-end;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: right;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #F2EEE3;
    margin: 4px 0;
    transition: 0.3s;
}

.burger span {
    height: 3px;
    background: #F2EEE3;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 4px 0;
}

/* MOBILE MENU (Hidden by default) */
.mobile-menu {
    height: calc(100vh - 0px);
    display: none;
    flex-direction: column;
    align-items: center;
    background: #111;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding-top: 200px;
}

.mobile-socials{
    padding-top: 100px;
}
.mobile-menu a {
    color: #F2EEE3;
    text-decoration: none;
    margin: 10px 0;
    font-size: 24px;
    font-family: "Ancizar Serif", serif;
    font-weight:100;
}

.mobile-sc-logo{
    height: 30px;
    padding: 5px 5px 5px 5px;
}

/* SHOW MOBILE MENU WHEN OPEN */
.mobile-menu.open {
    display: flex;
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}
/* #endregion */

/* #region common styles */
li{
    display: inline-block;
    
}

ul{
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    align-items: center;
}

a{
    /* padding: 8px 8px 8px 8px; */
    text-decoration: none;
    color: #F2EEE3;
    align-self: center;

}

a:hover{
    color: #594F50;
}

.section-text{
    font-size: 5rem;
    font-family: "Ancizar Serif", serif;
    font-weight: 400;
}

.head-container{
    width: 85vw;
    margin: auto;
}

/* #endregion */

/* #region icon Section */
.social-logos{
    text-decoration: none;
    transition: color 0.3s ease;
}

.sc-logo{
    height: 1.2rem;
    padding: 0.3rem;
}

.yt-logo{
    width: 29px;
}

.social-logos:hover{
    opacity: 0.5;
}
/* #endregion */

/* #region Hero Section */
.hero{
    padding-top: 78px;
    height: 75vh;
    min-height: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-items{
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    height: 100%;            /* Full height of the hero section */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* KEY: Ensures the image fills the div */
  z-index: -1;       /* Pushes the image behind any content inside .hero */
}

.slide-content-wrapper{
    width: 70vw;
    align-items: center;
}

.banner-wrapper{
    display: flex;
    justify-content: space-between;
}

.banner-left{
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-text{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-title{
    font-family: tu-title-font;
    font-size: 100px;
    color: #F2EEE3;
}

.banner-subtitle{
    font-family: out-now-font;
    letter-spacing: 8px;
    font-size: 20px;
    font-weight: 100;
    color: #F2EEE3;
    padding-bottom: 10px;
}

.banner-button{
    cursor: pointer;
    margin-top: 30px;
    font-family: "Ancizar Serif", serif;
    font-style: italic;
    font-size: 0.9rem;
    color: #f3f1e5;
    transition: .3s ease-in-out all;
    background: linear-gradient(to right, #111 0, #111 50%, #5a5050 50%, #5a5050 100%) no-repeat;
    background-size: 200% auto;
    padding: 10px 20px;
    border-radius: 20px;
}

button{
    border: none;
}

button:hover{
    background-position: right center; 
}


.banner-image{
    width: 230px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
}

.banner-right{
    
}

/* #endregion */

/* #region Music Section */
.music *{
}

.music{
    height: auto;
    min-height: 700px;
    /* max-height: 1000px; */
    background:#111;
}

.heading-container{
    justify-content: flex-end;
    display: flex;
    width: 100%;
}

.music-text{
    color: #F2EEE3;
    align-self: flex-end;
    padding-top: 60px;
}

.preview-container{
    display: flex;
    width: 80vw;
    margin: auto;
}

.music-preview{
    display: flex;
    height: auto;
    width: 80vw;
    justify-content: center;
}

.music-card {
    /* width: 20rem; */
    height: auto;
    color: #F2EEE3;
    flex-wrap: wrap; 
    margin: auto;
}

#music-card-left{
    /* margin-right: 30px; */
}

#music-card-right{
    /* margin-left: 30px; */
}

.track-art{
    width: 80vw;
    max-width: 360px;
    min-width: 120px;
    /* width: 20rem; */
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
    margin-top: 10px;
    }

.music-track-title{
    font-family: "Ancizar Serif", serif;
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 5px;
}

.music-button{
    cursor: pointer;
    margin-top: 5px;
    font-family: "Ancizar Serif", serif;
    font-style: italic;
    font-size: 0.9rem;
    color: #f3f1e5;
    transition: .3s ease-in-out all;
    background: linear-gradient(to left, #111 0, #111 50%, #5a5050 50%, #5a5050 100%) no-repeat;
    background-size: 200% auto;
    padding: 10px 20px;
    border-radius: 20px;
}

button{
    border: none;
}

button:hover{
    background-position: right center; 
}

.about-song{
    padding-left: 20px;
    width: 100%;
    color: #F2EEE3;
    padding-top: 5px;
    padding-bottom: 10px;
}

.about-song-title{
    font-size: 1.2rem;
    font-weight: 400;
    padding-top: 10px;   
    font-family: tu-title-font;
}

.about-song-description{
    font-size: 1rem;
    padding-top: 10px;   
    font-family: 'Times New Roman', Times, serif
    font-weight: 100;
    text-align: justify;
}

/* #endregion icon Section */

/* #region Video Section */
.videos{
    height: 35rem;
    background:#F1EEE3;
    border: #111 1px solid;

}

.videos-text{
    color: black;
    display: flex;
    flex-direction: column;
    padding: 60px 0 0 0px;
    width: auto;
}

.video-container{
    height: 80%;
    width: 80vw;
    display: flex;
    margin: auto;
}

.yt-videos {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    margin: auto;
}

.yt-videos iframe {
    aspect-ratio: 16 / 9;
    border: none;
    width: 50vw;
    min-width: 300px;
}

/* #endregion icon Section */

/* #region Blog Section */
.blogs{
    height: 75h;
    min-height: 500px;
    background:#111;
    justify-content: center;
    align-items: center;
}


.blog-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
}

.comingsoon-text{
    color: #F1EEE3;
    line-height: 0.8;
    text-align: right;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 24px;
}
/* #endregion Blog Section */

/* #region Subscribe Section */
.subscribe{
    height: 500px;
    /* width: 100%; */
    background:#F1EEE3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.subscribe-wraper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 75vw;
    flex-direction: column;
}
.subscribe-container-pc{
    display: flex;
    justify-content: center;
    align-items: center;
}
.subscribe-container-mobile{
    display: none;
    justify-content: center;
    align-items: center;
}
.thankyou-text{
    color: #5a5050;
    line-height: 0.8;
    text-align: right;
    font-weight: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 5rem;
}
.form-container{
    border: 2px solid black;
    width: 50vw;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* #endregion Subscribe Section */

/* #region About Section */
.about{
    padding-top: 78px;
    min-height: 100vh;
    width: 100%;
    background:#F1EEE3;
}

.about-text{
    color: #111;
    align-self: flex-end;
    padding-top: 60px;
}

.about-container{
    width: 80vw;
    height: auto;
    margin: auto;
    display: flex;
    padding-bottom: 80px;
}

.about-content{
    border: red 2px solid;
    display: flex;
    width: 70%;
    height: 100%;
    padding: 5px;
    text-align: justify;
}

.about-side{
    border: green    2px solid;
    height: 100%;
    width: 30%;
    padding: 5px;
}

.about-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* #endregion About Section */

/* #region Footer Section */
footer{
    box-sizing: border-box;
    bottom: 0;
    width: 100%;
    background: #111;
    color: #F2EEE3;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    justify-content: center;
    align-items: center;
    padding: 0 20px 15px;
}
.footer-over{
    display: flex;
    padding-bottom: 5px;
}
.back-to-top {
    padding-left: 20px;
    background-color: #111;
    padding-top: 10px ;
    margin-bottom: 1px;
}
.back-to-top a {
    color: #F2EEE3;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}
.back-to-top a:hover {
    color: grey; 
}
.footer-line-pc{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-line-mobile{
    display: none;
}

#foot-left {
    display: flex;   
    gap: 20px;       
    list-style: none; 
    padding: 0;
    margin: 0;
    font-size: 1rem;
}
/* #endregion footer section */

/* #region Media-Query max-768px */
@media (max-width: 780px) {

    .centre-nav{
        justify-content: left;
        
    }

    .left-nav, .right-nav {
        display: none; /* Hide desktop nav links */
    }

    .burger {
        display: flex; /* Show burger icon */
    }

    .nav-center {
        flex: 1;
        text-align: center;
    }

    /* Nav-related-queries-end here  */

    .about-song{
        padding-left: 0px;
        padding-top: 10px;
    }

    .music-preview{
        height: auto;
        margin: auto;
    }

    .preview-container{
        flex-direction: column;
        align-items: center;
    }
   
    html {
        font-size: 14px; /* Base font size */
    }

    #music{
        height: auto;
    }
    .subscribe-container-pc{
        display: none;
    }
    .subscribe-container-mobile{
        display: block;
    }
    .thankyou-text{
        text-align: center;
    }
    .footer-line-pc{
        display: none;
    }
    .footer-line-mobile{
        display: block;
        padding-bottom: 30px;
    }
    #foot-left {
        list-style: none;   /* removes default bullets */
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;  /* stack items vertically */
        gap: 8px;               /* space between each item */
    }
    #footer-links{
        padding-bottom: 10px;
    }
    #right-foot-mob{
        margin: auto;
    }
    #foot-right {
        list-style: none;
        padding: 15px 0 20px 0;
        margin: 0;
        display: flex;            /* arrange logos in a row */
        justify-content: center;  /* center them horizontally */
        align-items: center;      /* align them vertically (optional) */
        gap: 12px;                /* space between logos */
    }
    .sc-logo2{
        height: 2rem;
        padding: 0.3rem;
    }
}

@media (min-width: 781px) and (max-width: 1023px) {
    html {
        font-size: 14px; /* Base font size */
    }

    .footer-line-pc{
        display: none;
    }
    .footer-line-mobile{
        display: block;
        padding-bottom: 30px;
    }
    #foot-left {
        list-style: none;   /* removes default bullets */
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;  /* stack items vertically */
        gap: 8px;               /* space between each item */
    }
    #footer-links{
        padding-bottom: 10px;
    }
    #right-foot-mob{
        margin: auto;
    }
    #foot-right {
        list-style: none;
        padding: 15px 0 20px 0;
        margin: 0;
        display: flex;            /* arrange logos in a row */
        justify-content: center;  /* center them horizontally */
        align-items: center;      /* align them vertically (optional) */
        gap: 12px;                /* space between logos */
    }
    .sc-logo2{
        height: 2rem;
        padding: 0.3rem;
    }
}
/* #endregion */