.all-body
{
    background-color: #0A2345;
    font-family: Arial, sans-serif;
    margin: 0px;
}
.pointer
{
    cursor: pointer;
}
.clr1
{
    color: #295CA1;
}
.white
{
    color: #ffff;
}

.container h1, 
.container p 
{
  margin: 0;        
}

.hero-section-one h1
{
    margin-bottom: 15px;
}
.hero-section-one p
{
    margin-bottom: 30px;
    font-size: 19px;
}
.hero-section-one button
{
    font-size: 15px;
    margin-top: 10px;
}
.container 
{
    width: 90%;             
    max-width: 1200px;       
    margin: 0 auto;          
    padding-top:140px;           
    display: flex;           
    flex-direction: column;
    align-items: center;    
    gap: 5px;   
       
}
  
.navbar
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 1%;
    padding-bottom: 1%;
}
.navbar-image1-size
{
    width: 75%;
    height: auto;
    cursor: pointer;
}
.navbar-image2-size
{
    width: 60%;
    height: auto;
    display: block;
}

.menu-label {
    display: inline-block;
    cursor: pointer;
    user-select: none;
}

.menu {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform-origin: top center;
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
    
}

/* menu content */
.menu-list {
    list-style: none;
    margin: 0;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.menu-list li {
    padding: 6px 10px;
}

.menu-list a {
    font-size: 20px;
    color: #295CA1;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}

#menu-toggle:checked ~ .menu {
    max-height: 260px;
    opacity: 1;
    transform: translateY(0);
}

.blend-btn{
    background-color: #0A2345;
    width: 180px;
    height: auto;
    border: 1px solid #295CA1;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 100px;
    
}

.hero-section-one h1
{
    font-size: 50px;
    font-weight:lighter;
}

.hero-section-one button:hover{
    background-color: #295CA1;
    transition: 0.5s ease-in-out;
}
.hero-section-two button:hover{
    background-color: #295CA1;
    transition: 0.5s ease-in-out;
}
.clr2{
    color: #66778e;
}
.music-section
{

    background-image: url('../assets/music-bg.png');
    background-size: 100% auto;   
    background-repeat: no-repeat;
    background-position: center; 
    margin-top: 160px;

    display: flex;
    justify-content: center; 
    align-items: center;     
    height: 500px; 
}
.container2
{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;     
    gap: 0px;
}

#music-image1 {
    width: 300px;
    height: auto;
    position: relative;
    z-index: 1;
    top: -30px; 
}

#music-image2 {
    width: 450px;
    height: 650px;
    position: relative;
    z-index: 2; 
    top: 15px; 
}

#music-image3 {
    width: 300px;
    height: auto;
    position: relative;
    z-index: 1;
    top: -30px;
}

.headphone-section {
    margin-top: 100px;
    position: relative;         
    display: flex;
    align-items: center;        
    justify-content: center;
    gap: 40px;
    padding: 50px 0;
}

.headphone-section #image1 {
    width: 650px;
    position: relative;         
    top: 40px; 
    left: -135px;                
    z-index: 2;                 
}

.container3.hero-section-two {
    position: relative; 
    z-index: 2; 
    left: -135px; 
    width: 1250px;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.container3.hero-section-two h1,
.container3.hero-section-two p
{
    margin: 0px;
}

.container3.hero-section-two h1{
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 8px;
}
.container3.hero-section-two p{
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}



/* Phone Feature Section */
.phone-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    position: relative; /* for absolute/relative positioning of children if needed */
    flex-wrap: wrap; /* wrap on smaller screens */
    margin: 0px;
}

/* Div 1 & Div 2 - feature blocks */
.phone-feature > div {
    display: flex;
    flex-direction: column; /* stack content vertically */
    align-items: start;
    gap: 40px; /* more space between feature items */
    position: relative; /* allow custom adjustments */
}

/* Individual feature item */
.phone-feature > div > div {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    max-width: 270px; /* user-friendly width */
    gap: 5px;
}

.phone-feature > div > div img {
    width: 35px;
}

.phone-feature > div > div h1 {
    font-size: 18px;
    margin: 0;
}

.phone-feature > div > div p {
    font-size: 14px;
    line-height: 1.8;
    color: #66778e;
    text-align: justify;
}

/* Phone Image in the middle */
.phone-feature > img {
    width: 50%; /* 85% of viewport width */
    max-width: 650px; /* optional max size */
    height: auto;
    position: relative; /* allows moving it with top/left/right/bottom */
    z-index: 1; /* so it stays behind or in front as needed */
    top: -150px;
}
.phone-feature-h1-size
{
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-top: 100px;
    padding-bottom: 50px;
}
@media (max-width: 600px) {
    /* Navbar adjustments */
    .menu-list {
        flex-direction: column;
    }

    .navbar {
        padding-left: 4%;
        padding-right: 0%;
    }

    .navbar-image1-size {
        width: 100px;
    }

    /* Music section adjustments */
    .music-section {
        height: auto;      /* auto height for small screens */
        padding: 20px 0;   /* vertical padding */
    }

    .container2 {
        flex-direction: column; /* stack images vertically */
        gap: 15px;              /* spacing between images */
    }
    #music-image2
    {
        width: 100%;   /* responsive width */
        max-width: 400px;
        top: 0px;
    }

    #music-image1,
    #music-image3 {
        width: 80%;   /* responsive width */
        max-width: 300px;
        top: 0px;     /* remove floating effect on small screens */
    }

    .headphone-section {
        flex-direction: column;  /* Stack image and text vertically */
        margin-top: 50px;
        padding: 30px 20px;
        gap: 20px;
    }

    .headphone-section #image1 {
        width: 90%;       
        top: 0;
        left: 0;
        position: relative;
        left: -20px;
        z-index: 1;
    }

    .container3.hero-section-two {
        width: 100%;
        max-width: 100%;
        left: 0;
        text-align: center;
        align-items: center;
        gap: 10px;
        z-index: 2;
    }

    .container3.hero-section-two h1 {
        font-size: 28px;  /* Smaller font size */
        margin-bottom: 10px;
    }

    .container3.hero-section-two p {
        font-size: 14px;  /* Smaller font size */
        line-height: 1.5;
        text-align: center;
        margin-bottom: 15px;
    }

    .container3.hero-section-two button {
        padding: 10px 20px;  /* Adjust button size */
        font-size: 14px;
    }
}
