/* =========================================================
   ABIGAIL RINALDI
   MODEL • ACTRESS
   Main Stylesheet
   ========================================================= */


/* =========================================================
   01. GLOBAL SETTINGS
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}


/* =========================================================
   02. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
.logo,
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

h2 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
}

h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
}


/* =========================================================
   03. NAVIGATION
   ========================================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 28px 60px;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}


/* Personal name */

.logo {
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.13em;
  white-space: nowrap;
}


/* Navigation links */

.nav-links {
  display: flex;
  align-items: center;

  list-style: none;
  gap: 34px;
}

.nav-links a {
  position: relative;

  color: #111111;
  text-decoration: none;

  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.17em;
  text-transform: uppercase;

  transition: opacity 0.3s ease;
}


/* Quiet editorial hover */

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background: currentColor;

  transition: width 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.65;
}

.nav-links a:hover::after {
  width: 100%;
}


/* =========================================================
   04. HERO
   ========================================================= */

.hero {
  position: relative;

  width: 90%;
  height: 145vh;

  min-height: 850px;

  margin: 0 auto;

  overflow: hidden;
}


/* Main photograph */

.hero img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}


/* Very subtle cinematic overlay */

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08),
    transparent 30%,
    rgba(0, 0, 0, 0.08)
  );

  pointer-events: none;
}


/* Name over hero image */

.hero-text {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 2;

  width: 90%;

  color: #ffffff;
  text-align: center;

  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;

  font-size: clamp(48px, 8vw, 96px);

  line-height: 0.95;

  letter-spacing: 0.08em;
}

.hero p {
  margin-top: 20px;

  font-size: 25px;
  font-weight: 400;

  letter-spacing: 0.35em;
  text-transform: uppercase;
}


/* =========================================================
   05. GENERAL SECTIONS
   ========================================================= */

.content-section {
  padding: 150px 15%;
}


/* Section headings */

.content-section > h2 {
  margin-bottom: 55px;
}


/* =========================================================
   06. ABOUT
   ========================================================= */

.about-section {
  max-width: 1200px;
  margin: 0 auto;
}


/* About copy */

.about-copy {
  max-width: 720px;

  margin-left: auto;
  margin-right: auto;
}

.about-copy p {
  margin-bottom: 28px;

  font-size: 15px;
  line-height: 2;

  letter-spacing: 0.015em;
}

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


/* =========================================================
   07. MODELING GALLERY
   ========================================================= */

.model-section {
  max-width: 1500px;
  margin: 0 auto;
}


/* Editorial image grid */

.gallery {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 28px;

  width: 100%;
}


/* Individual photographs */

.gallery img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 0;

  object-fit: cover;

  transition:
    opacity 0.4s ease,
    transform 0.6s ease;
}


/* Subtle editorial image interaction */

.gallery img:hover {
  opacity: 0.9;
}


/* =========================================================
   08. ACTING
   ========================================================= */

.actress-section {
  max-width: 1200px;
  margin: 0 auto;
}


/* Individual acting components */

.intro-video,
.acting-reel,
.acting-still,
.acting-item {
  margin-bottom: 90px;
}


/* Small labels above acting material */

.intro-video h3,
.acting-reel h3,
.acting-still h3,
.acting-item h3 {
  margin-bottom: 22px;

  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}


/* Intro video */

.intro-video {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.intro-video video {
  display: block;

  width: 100%;
  height: auto;

  background: #000000;
}


/* Acting reel placeholder */

.acting-reel {
  text-align: center;

  padding: 100px 20px;

  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.acting-reel p {
  font-size: 13px;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  opacity: 0.5;
}


/* Film still */

.acting-still {
  max-width: 800px;

  margin-left: auto;
  margin-right: auto;
}

.acting-still img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}


/* Resume */

.acting-item {
  text-align: center;

  margin-bottom: 0;
}

.acting-item a {
  display: inline-block;

  color: #111111;
  text-decoration: none;

  padding-bottom: 5px;

  border-bottom: 1px solid #111111;

  font-size: 10px;
  font-weight: 400;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.acting-item a:hover {
  opacity: 0.55;
  transform: translateY(-1px);
}


/* =========================================================
   09. CONTACT
   ========================================================= */

.contact-section {
  text-align: center;

  padding-top: 160px;
  padding-bottom: 160px;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}


/* Contact heading */

.contact-section h2 {
  margin-bottom: 25px;
}


/* Contact description */

.contact-intro {
  font-size: 13px;

  letter-spacing: 0.03em;

  opacity: 0.7;
}


/* Professional links */

.profile-links {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 10px;

  margin-top: 35px;
}

.profile-links a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 9px 16px;

  border: 1px solid rgba(0, 0, 0, 0.45);

  background: transparent;

  color: inherit;

  text-decoration: none;

  font-size: 9px;
  font-weight: 400;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  transition:
    opacity 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.profile-links a:hover {
  background: #111111;
  color: #ffffff;

  opacity: 1;
}


/* =========================================================
   10. FOOTER
   ========================================================= */

.site-footer {
  text-align: center;

  padding: 100px 20px 45px;

  border-top: 1px solid rgba(0, 0, 0, 0.06);
}


/* Name */

.footer-name {
  font-size: 27px;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  margin-bottom: 8px;
}


/* Professional title */

.footer-title {
  font-family: 'Inter', sans-serif;

  font-size: 9px;
  font-weight: 400;

  letter-spacing: 0.22em;

  text-transform: uppercase;

  opacity: 0.55;

  margin-bottom: 40px;
}


/* Copyright */

.footer-copyright {
  font-family: 'Inter', sans-serif;

  font-size: 8px;
  font-weight: 300;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  opacity: 0.4;
}


/* =========================================================
   11. TABLET
   ========================================================= */

@media (max-width: 900px) {

  .site-nav {
    padding: 24px 35px;
  }

  .content-section {
    padding-left: 10%;
    padding-right: 10%;
  }

}


/* =========================================================
   12. MOBILE
   ========================================================= */

@media (max-width: 768px) {

  /* ---------------------------------------------------------
     Navigation
     --------------------------------------------------------- */

  .site-nav {
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 16px;

    padding: 18px 15px;
  }

  .logo {
    font-size: 21px;

    letter-spacing: 0.12em;
  }

  .nav-links {
    gap: 18px;

    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 9px;

    letter-spacing: 0.13em;
  }


  /* ---------------------------------------------------------
     Hero
     --------------------------------------------------------- */

  .hero {
    position: relative;
     
    width: 90%;
    height: 100svh;
    min-height: 0;

    margin: 0 auto;

    overflow: hidden;

    line-height: 0;
  }

  .hero img {
    display: block;
     
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center center;
  }

  .hero-text {
    line-height: normal;
    width: 92%;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 60px);

    letter-spacing: 0.06em;
  }

  .hero p {
    margin-top: 16px;

    font-size: 10px;

    letter-spacing: 0.28em;
  }


  /* ---------------------------------------------------------
     Sections
     --------------------------------------------------------- */

  .content-section {
    padding: 100px 8%;
  }

  .content-section > h2 {
    margin-bottom: 40px;
  }

  h2 {
    font-size: 46px;
  }


  /* ---------------------------------------------------------
     About
     --------------------------------------------------------- */

  .about-copy p {
    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 24px;
  }


  /* ---------------------------------------------------------
     Modeling gallery
     --------------------------------------------------------- */

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

    gap: 18px;
  }


  /* ---------------------------------------------------------
     Acting
     --------------------------------------------------------- */

  .intro-video,
  .acting-reel,
  .acting-still,
  .acting-item {
    margin-bottom: 65px;
  }

  .acting-reel {
    padding: 75px 15px;
  }


  /* ---------------------------------------------------------
     Contact
     --------------------------------------------------------- */

  .contact-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .contact-intro {
    max-width: 300px;

    margin-left: auto;
    margin-right: auto;

    line-height: 1.8;
  }

  .profile-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;

    width: 100%;
    max-width: 340px;

    margin: 28px auto 0;
  }

  .profile-links a {
    width: 100%;
     
    padding: 9px 8px;

    font-size: 8px;

    letter-spacing: 0.11em;
  }


  /* ---------------------------------------------------------
     Footer
     --------------------------------------------------------- */

  .site-footer {
    padding: 75px 20px 30px;
  }

  .footer-name {
    font-size: 21px;
  }

  .footer-title {
    font-size: 9px;

    margin-bottom: 30px;
  }

  .footer-copyright {
    font-size: 7px;
  }

}


/* =========================================================
   13. VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 380px) {

  .site-nav {
    gap: 13px;
  }

  .nav-links {
    gap: 14px;
  }

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

  .hero h1 {
    font-size: 40px;
  }

  .content-section {
    padding-left: 7%;
    padding-right: 7%;
  }

}
