/* ==========================================================
   ARIANA BARBOSA
   PERSONAL ACTOR PORTFOLIO
   ========================================================== */


/* ==========================================================
   RESET
   Removes inconsistent browser defaults.
   ========================================================== */

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


/* ==========================================================
   GENERAL PAGE SETTINGS
   ========================================================== */

html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    background: #111111;

    color: #ffffff;

    line-height: 1.6;

}


/* Remove default link styling */

a {

    color: inherit;

    text-decoration: none;

}


/* ==========================================================
   NAVIGATION
   ========================================================== */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 25px 5%;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.65),
        transparent
    );

}


.nav-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    max-width: 1400px;

    margin: auto;

}


.logo {

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

}


.main-nav {

    display: flex;

    gap: 30px;

}


.main-nav a {

    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: opacity .3s ease;

}


.main-nav a:hover {

    opacity: .55;

}


/* Mobile menu button */

.menu-button {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 24px;

}


/* ==========================================================
   HERO
   ========================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

}


/* ==========================================================
   HERO IMAGE

   IMPORTANT:

   Put Ariana's photograph here:

   images/hero.jpg

   You can change the filename if necessary.
   ========================================================== */

.hero-background {

    position: absolute;

    inset: 0;

    background-image:
        url("../images/hero.jpg");

    background-size: cover;

    background-position: center 35%;

    transform: scale(1.02);

}


/* Darkens the photograph so the text is readable */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.72),
            rgba(0,0,0,.20),
            rgba(0,0,0,.15)
        );

}


/* ==========================================================
   HERO TEXT
   ========================================================== */

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 1400px;

    width: 100%;

    margin: auto;

    padding: 160px 5% 100px;

}


.hero-eyebrow {

    font-size: 12px;

    letter-spacing: 5px;

    margin-bottom: 15px;

}


.hero h1 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(
        70px,
        10vw,
        150px
    );

    font-weight: 400;

    line-height: .78;

    letter-spacing: -3px;

}


.hero-description {

    margin-top: 35px;

    font-size: 15px;

    letter-spacing: 2px;

}


/* ==========================================================
   BUTTONS
   ========================================================== */

.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 40px;

}


.button {

    display: inline-block;

    padding: 14px 28px;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition:
        transform .3s ease,
        background .3s ease;

}


.button:hover {

    transform: translateY(-3px);

}


.button-light {

    background: #ffffff;

    color: #111111;

}


.button-outline {

    border: 1px solid rgba(
        255,
        255,
        255,
        .65
    );

}


/* ==========================================================
   SCROLL INDICATOR
   ========================================================== */

.scroll-indicator {

    position: absolute;

    bottom: 35px;

    left: 5%;

    font-size: 10px;

    letter-spacing: 3px;

    text-transform: uppercase;

    display: flex;

    align-items: center;

    gap: 12px;

}


.scroll-indicator span {

    display: block;

    width: 40px;

    height: 1px;

    background: white;

}


/* ==========================================================
   GENERAL SECTIONS
   ========================================================== */

.section {

    padding: 140px 5%;

}


.section-container {

    max-width: 1200px;

    margin: auto;

}


.section-label {

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 45px;

    opacity: .55;

}


/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

.section h2 {

    font-family: "Cormorant Garamond", serif;

    font-weight: 400;

    font-size: clamp(
        50px,
        7vw,
        100px
    );

    line-height: .9;

}


/* ==========================================================
   ABOUT
   ========================================================== */

.about {

    background: #f2eee8;

    color: #171717;

}


.about-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

}


.about-text {

    max-width: 500px;

    font-size: 17px;

}


.about-text p {

    margin-bottom: 25px;

}


.text-link {

    display: inline-block;

    margin-top: 15px;

    border-bottom: 1px solid;

    padding-bottom: 5px;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* ==========================================================
   REEL
   ========================================================== */

.reel {

    background: #171717;

}


.reel-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 60px;

}


.reel-heading p {

    opacity: .6;

}


.video-placeholder {

    height: 600px;

    background:

        linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.5)
        ),

        #333;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}


.play-button {

    width: 80px;

    height: 80px;

    border: 1px solid white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 20px;

}


.video-placeholder p {

    font-size: 11px;

    letter-spacing: 4px;

}


/* ==========================================================
   GALLERY
   ========================================================== */

.gallery {

    background: #e8e3dc;

    color: #171717;

}


.photo-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

}


.photo {

    height: 450px;

    background: #b7b1a8;

    display: flex;

    align-items: end;

    padding: 25px;

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* ==========================================================
   RESUME
   ========================================================== */

.resume {

    background: #111111;

}


.resume-content {

    max-width: 800px;

}


.resume-content p {

    margin: 35px 0;

    opacity: .65;

}


/* ==========================================================
   CONTACT
   ========================================================== */

.contact {

    background: #f2eee8;

    color: #171717;

}


.contact-links {

    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 60px;

}


.contact-links a {

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-bottom: 1px solid;

    padding-bottom: 6px;

}


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

.footer {

    display: flex;

    justify-content: space-between;

    padding: 35px 5%;

    background: #111;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: .65;

}


/* ==========================================================
   MOBILE RESPONSIVE DESIGN
   ========================================================== */

@media (max-width: 800px) {


    .main-nav {

        display: none;

    }


    .menu-button {

        display: block;

    }


    .hero-content {

        padding-top: 200px;

    }


    .hero h1 {

        font-size: 75px;

    }


    .about-content {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .reel-heading {

        display: block;

    }


    .reel-heading p {

        margin-top: 25px;

    }


    .video-placeholder {

        height: 400px;

    }


    .photo-grid {

        grid-template-columns: 1fr;

    }


    .photo {

        height: 450px;

    }


    .section {

        padding: 100px 7%;

    }


    .footer {

        flex-direction: column;

        gap: 15px;

    }

    /* added tonight Armando */

    .mobile-singer {
    display: inline;
}

}

/* =========================================================
   HEADSHOTS / PORTRAIT GALLERY
   ========================================================= */

.gallery-section {
  padding: 100px 6%;
  background: #f5f2ed;
}

.section-header {
  max-width: 750px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
}

.section-header h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.section-intro {
  margin: 0 auto;
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Gallery layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1250px;
  margin: 0 auto;
}

/* Individual photograph */
.gallery-item {
  margin: 0;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4 / 5;
}

/* Portrait itself */
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;

  /* This crops the image attractively without stretching it */
  object-fit: cover;

  /* Start centered. We can customize individual images later. */
  object-position: center;

  transition: transform 0.5s ease;
}

/* Subtle movement when someone points at a photograph */
.gallery-item:hover img {
  transform: scale(1.025);
}

/* Tablet */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone */
@media (max-width: 600px) {
  .gallery-section {
    padding: 70px 20px;
  }

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


}
/* =========================================================
   PERFORMANCE REEL VIDEO
   Keeps Ariana's video inside the browser window
   while preserving the video's original proportions.
   ========================================================= */

.reel-video {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
}


/* The video scales down with the browser window.
   Height remains automatic so Ariana is never
   stretched or distorted. */

.reel-video video {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}

/* Desktop separators */

.desktop-separator {
    display: inline;
}

.mobile-singer,
.mobile-specialty {
    display: inline;
}

/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */


   
@media (max-width: 768px) {

    /* Hide the normal desktop navigation */
    .main-nav {
        display: none;

        position: absolute;

        top: 80px;
        right: 5%;

        flex-direction: column;
        gap: 20px;

        padding: 25px 30px;

        background: rgba(0, 0, 0, 0.92);

        border-radius: 8px;

        .mobile-specialty {
            display: block;
        }
    }

    /*  Added here  ARB*/
        .mobile-specialty {
            display: inline;
}

.logo {
    font-size: 11px;
    letter-spacing: 2px;
}


    /* Show the hamburger button on smaller screens */
    .menu-button {
        display: block;

        cursor: pointer;
    }


    /* This class is added by JavaScript
       when the hamburger button is clicked */
    .main-nav.mobile-open {
        display: flex;
    }

/* =========================================================
   MOBILE HERO ADJUSTMENTS
   Keeps the hero text away from Ariana's face
   ========================================================= */

.hero-content {
    text-align: left;

    /* Use the full width of the phone */
    width: 100%;
    max-width: none;

    /* Do not center the content box */
    margin: 0;

    /*
       Keep the text primarily on the left side.
       The large right padding reserves space
       for Ariana's face.
    */
    padding-left: 5%;
    padding-right: 45%;

    box-sizing: border-box;
}

.hero-eyebrow {
    font-size: 9px;
    letter-spacing: 1.6px;
    line-height: 1.6;
    white-space: normal;
}



.desktop-separator {
    display: none;
}

.mobile-singer,
.mobile-specialty {
    display: block;
}

}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.05;
    margin: 0.25rem 0 0.5rem 0;
}

.hero-description {
    font-size: 12px;
    letter-spacing: 0.5px;

    max-width: 180px;

    line-height: 1.5;
}
}


}