/* Starter Stylesheet for our project.
-----------------------------------------------
Please read the comments to understand what
this code does. 

Refer to w3schools.com for help
-----------------------------------------------
*/

/*  This removes the default browser settings */
/* RESET */
/* =========================
   RESET
========================= */
/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
    background-color: #e7c1cf;
    color: black;
    font-family: "Cormorant Garamond", serif;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: black;
    text-decoration: none;
}

/* =========================
   SHARED HEADER / NAVBAR
========================= */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 50px;
    background-color: #e7c1cf;
    border-bottom: 2px solid rgba(0, 0, 0, 0.18);
}

.logo {
    font-family: "Italiana", serif;
    font-size: 42px;
    font-weight: 400;
    color: black;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 34px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.navbar li {
    margin: 0;
    padding: 0;
}

.navbar a {
    font-family: "Italiana", serif;
    font-size: 22px;
    color: black;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    opacity: 0.65;
}

/* =========================
   SHARED PAGE LAYOUT
========================= */
.page-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 25px;
}

.page-title {
    font-family: "Italiana", serif;
    font-size: 58px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
}

.page-text {
    font-size: 30px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.site-footer {
    text-align: center;
    font-size: 22px;
    padding: 30px 20px 35px 20px;
}

/* =========================
   HOME PAGE
========================= */
.hero {
    position: relative;
    width: 100%;
    height: 620px;
    background-image: url("../_images/Abstract.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    z-index: 1;
}

.hero-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-family: "Italiana", serif;
    font-size: 95px;
    font-weight: 400;
    color: white;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    color: white;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.home-header {
    text-align: center;
    padding: 70px 20px 0 20px;
}

.home-name {
    font-family: "Italiana", serif;
    font-size: 110px;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 90px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.home-nav {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    padding-bottom: 35px;
    border-bottom: 3px solid rgba(0, 0, 0, 0.22);
    margin-bottom: 0;
}

.home-nav a {
    font-family: "Italiana", serif;
    font-size: 34px;
}

.home-nav a:hover {
    opacity: 0.7;
}

.home-welcome {
    font-family: "Italiana", serif;
    font-size: 85px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
    max-width: 750px;
    margin: 80px auto 120px auto;
    color: #222;
    line-height: 1.15;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.bottom-image {
    width: 100%;
    height: 816px;
    background-image: url("../_images/Abstract.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -110px;
}

/* =========================
   ABOUT PAGE
========================= */
.about-text {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
}

.social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkedin-icon svg {
    width: 170px;
    height: auto;
    fill: #8a6f78;
}

.instagram-icon svg {
    width: 105px;
    height: auto;
    fill: #8a6f78;
    transform: translateY(-5px);
}

.resume-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.resume-box {
    display: block;
    background-color: #f5f5f5;
    padding: 10px;
    width: 85%;
    max-width: 1000px;
}

.resume-box img {
    width: 100%;
}

/* =========================
   LINKS PAGE
========================= */
.links-page {
    width: 100%;
    min-height: 100vh;
}

.links-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.links-hero-text {
    flex: 1;
}

.links-hero-text h1 {
    font-family: "Italiana", serif;
    font-size: 78px;
    font-weight: 400;
    margin-bottom: 20px;
}

.links-hero-text p {
    font-size: 28px;
    line-height: 1.6;
    max-width: 650px;
}

.links-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.links-hero-image img {
    width: 100%;
    max-width: 420px;
    height: 500px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.articles-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 60px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.article-card {
    background-color: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 22px;
    padding: 28px;
    text-decoration: none;
    color: #1d1d1d;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.article-card h2 {
    font-size: 31px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 14px;
}

.article-card p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.article-card span {
    font-size: 17px;
    font-weight: 600;
    text-decoration: underline;
}

.links-footer {
    text-align: center;
    padding: 20px 20px 50px;
}

.links-footer p {
    font-size: 22px;
}
/* =========================
   MEDIA PAGE
========================= */

.media-card {
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    padding: 30px;
}

/* THIS is what makes them side by side */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.video-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    margin-top: 12px;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.5;
    max-width: 90%;
}

/* MOBILE FIX (super important) */
@media (max-width: 800px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
    .links-hero {
        flex-direction: column;
        text-align: center;
    }

    .links-hero-text p {
        max-width: 100%;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        gap: 18px;
        padding: 24px 20px;
    }

    .logo {
        font-size: 34px;
    }

    .navbar ul {
        justify-content: center;
        gap: 18px;
    }

    .navbar a {
        font-size: 18px;
    }

    .page-title {
        font-size: 42px;
    }

    .page-text {
        font-size: 24px;
    }

    .home-name {
        font-size: 76px;
        margin-bottom: 55px;
    }

    .home-welcome {
        font-size: 52px;
        margin-bottom: 100px;
    }

    .home-nav {
        gap: 30px;
    }

    .home-nav a {
        font-size: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-intro p {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .links-hero {
        padding: 50px 25px 30px;
    }

    .links-hero-text h1 {
        font-size: 56px;
    }

    .links-hero-text p {
        font-size: 22px;
    }

    .links-hero-image img {
        height: 420px;
    }

    .articles-section {
        padding: 20px 25px 50px;
    }

    .article-card h2 {
        font-size: 25px;
    }

    .article-card p {
        font-size: 17px;
    }

    .links-footer p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .page-section {
        padding: 40px 15px 30px 15px;
    }

    .home-header {
        padding-top: 40px;
    }

    .home-name {
        font-size: 54px;
        margin-bottom: 35px;
    }

    .home-welcome {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .home-nav {
        gap: 18px;
    }

    .home-nav a {
        font-size: 20px;
    }

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

    .gallery-grid img,
    .featured-photo img {
        height: auto;
    }

    .about-text,
    .links-hero-text p,
    .media-intro p {
        font-size: 22px;
    }
}
/* =========================
   GALLERY PAGE
========================= */
.gallery-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.gallery-hero {
    text-align: center;
    margin-bottom: 55px;
}

.gallery-label {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 12px;
}

.gallery-hero h1 {
    font-family: "Italiana", serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 16px;
}

.gallery-subtext {
    font-size: 1.45rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

/* FEATURED SECTION */
.featured-photo-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 55px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.featured-photo-text {
    padding: 10px 8px 10px 8px;
}

.featured-tag {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.featured-photo-text h2 {
    font-family: "Italiana", serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
}

.featured-photo-text p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.featured-photo {
    display: flex;
    justify-content: center;
}

.featured-photo img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.26);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.gallery-image-wrap {
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    padding: 18px 18px 20px;
    text-align: center;
}

.gallery-caption-title {
    display: block;
    font-family: "Italiana", serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.gallery-caption-text {
    display: block;
    font-size: 1.08rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .featured-photo-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-photo-text {
        padding: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-page {
        padding: 45px 24px 75px;
    }

    .gallery-hero h1 {
        font-size: 3.7rem;
    }

    .gallery-subtext {
        font-size: 1.2rem;
    }

    .featured-photo-text h2 {
        font-size: 2.1rem;
    }

    .featured-photo-text p {
        font-size: 1.15rem;
    }

    .featured-photo img {
        height: 400px;
    }

    .gallery-card img {
        height: 290px;
    }
}

@media (max-width: 600px) {
    .gallery-page {
        padding: 35px 18px 55px;
    }

    .gallery-hero h1 {
        font-size: 2.8rem;
    }

    .gallery-subtext {
        font-size: 1rem;
    }

    .featured-photo-section {
        padding: 18px;
        border-radius: 20px;
    }

    .featured-photo-text h2 {
        font-size: 1.8rem;
    }

    .featured-photo-text p {
        font-size: 1rem;
    }

    .featured-photo img {
        height: 270px;
    }

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

    .gallery-card img {
        height: auto;
    }
}
.about-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px 80px;
}

.about-card {
    background-color: #f3ecef;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 48px 50px 42px;
}

.about-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 540px;
    text-align: center;
}

.about-text h1 {
    font-size: 3.7rem;
    margin: 0 0 22px;
    line-height: 1.05;
    color: #111;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 0 0 20px;
    color: #222;
}

.about-image {
    flex: 0 0 300px;
    margin: 10px 0 0;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: 210px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
}

.about-image figcaption {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
}
.resume-section {
    margin-top: 55px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resume-section h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

/* this fixes the layout */
.resume-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.resume-row p {
    font-size: 1.05rem;
    margin: 0;
}

.resume-button {
    padding: 12px 26px;
    background-color: #d8c0c8;
    color: #111;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: 0.2s ease;
}

.resume-button:hover {
    transform: translateY(-1px);
    background-color: #cfb3bc;
}

.social-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.social-footer img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}

.social-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.social-footer a:hover {
    transform: scale(1.08);
}


@media (max-width: 900px) {
    .about-page {
        padding: 30px 20px 60px;
    }

    .about-top {
        flex-direction: column;
        align-items: center;
    }

    .about-text h1 {
        font-size: 2.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image {
        margin-top: 8px;
    }

}
.social-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 35px;
}

.social-footer a {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-footer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* optional hover (looks clean, not flashy) */
.social-footer a:hover {
    transform: scale(1.10);
}
.about-card {
    background: rgba(255, 255, 255, 0.26);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.media-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px 90px;
}

.media-hero {
  text-align: center;
  margin-bottom: 25px;
}

.media-hero h1 {
    font-family: "Italiana", serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 16px;
}


.media-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}

.media-description {
 font-size: 1.45rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

.media-description p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
}

.video-card {
  background-color: #e7c4cf;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  margin-bottom: 16px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

.navbar a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .media-page {
    padding: 50px 20px 70px;
  }

  .media-hero h1 {
    font-size: 3rem;
  }
}