/* =========================
   RESET
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #0b1a27;
}

a {
    text-decoration: none;
}


/* =========================
   COMMON BUTTON
========================= */
.btn {
    display: inline-block;
    background-color:#E9B86E ;

    color: #081A23;
    font-size: 20px;
    padding: 12px 28px;
    border-radius: 7px;
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}


/* =========================
   HERO SECTION
========================= */
.hero-section {
    position: relative;
    background: url('../assets/about.webp') no-repeat center top  ;
    background-size: cover;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    padding: 80px 20px;
}

/* Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 26, 39, 0.5);
    z-index: 0;
}


/* =========================
   HERO CONTAINER
========================= */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
}


/* =========================
   HEADINGS
========================= */
.hero-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-container h1::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: #E7C175;
    margin-top: 10px;
    border-radius: 2px;
}


/* =========================
   CELEBRITY SECTION
========================= */
.celebrity-container {
    margin-top: 50px;
      max-width:66%;
}

.celebrity-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #9aa5b1;
    margin-bottom: 10px;
}

.celebrity-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}


/* =========================
   VIDEO
========================= */
.video-wrapper {
    width: 100%;
    max-width: 700px;
    margin-top: 30px;
    border: 2px solid #fff;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 405px;
    display: block;
}

 #infoBox {
          max-width:70%;
    }

/* =========================
   TABLET VIEW
========================= */
@media (max-width: 1024px) {

    .hero-section {
        padding: 60px 20px;
    }

    .hero-container h1 {
        font-size: 40px;
    }

    .celebrity-container h3 {
        font-size: 40px;
    }

    .celebrity-container h2 {
        font-size: 30px;
    }

    .video-wrapper iframe {
        height: 300px;
    }

    .btn {
        font-size: 18px;
        padding: 10px 24px;
    }

     .hero-container {
        max-width: 70%;
    }

     #infoBox {
          max-width:50%;
    }
}


/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 768px) {

    .hero-section {
        min-height: auto;
        padding: 40px 12px;
        background-size: cover;
    }

    .hero-container {
        max-width: 100%;
    }

    #infoBox h3{
         font-size: 12px;
    }
     #infoBox p{
         font-size: 10px;
    }

     #infoBox {
          max-width:95%;
    }
   

    .hero-container h1 {
        font-size: 26px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .hero-container h1::after {
        width: 22px;
        height: 2px;
        margin-top: 6px;
    }

    .celebrity-container {
        margin-top: 35px;
         max-width:95%;
    }

    .celebrity-container h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }

      .celebrity-container p {
        font-size: 13px;
       
    }

    .celebrity-container h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .btn {
        font-size: 15px;
        padding: 8px 16px;
        border-radius: 6px;
        margin: 14px 0;
    }

    .video-wrapper {
        margin-top: 20px;
        border-radius: 10px;
    }

    .video-wrapper iframe {
        height: 190px;
    }
}


/* =========================
   VERY SMALL DEVICES
========================= */
@media (max-width: 480px) {

    .hero-container h1 {
        font-size: 22px;
    }

    .celebrity-container h3 {
        font-size: 22px;
    }

    .celebrity-container h2 {
        font-size: 18px;
    }

    .btn {
        font-size: 14px;
        padding: 7px 14px;
    }

    .video-wrapper iframe {
        height: 170px;
    }
}
