/* GOOGLE FONTS:
Add this in your HTML head:

<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
*/

:root {
  --red: #b71c1c;
  --cream: #f7f4f2;
  --pink: #e7caca;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

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

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 35px 8%;
  background: rgba(247, 244, 242, 0.95);
  backdrop-filter: blur(8px);
  z-index: 999;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.nav-links a {
  text-decoration: none;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

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

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

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: var(--cream);
}

.hero-title {
  color: var(--red);
  line-height: 0.85;
}

.script-word {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 10rem;
  font-style: italic;
  font-weight: 400;
}

.portfolio-word {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 11rem;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-subtitle {
  margin-top: 80px;
  color: var(--red);
}

.hero-subtitle p {
  font-size: 1.8rem;
}

.hero-subtitle h3 {
  font-size: 2.3rem;
  font-weight: 500;
}

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

.about-section {
  background: var(--red);
  padding: 120px 8%;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 650px;
  height: 800px;

  object-fit: cover;

  border-radius: 12px;
}

.about-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  color: white;
  font-weight: 400;
  margin-bottom: 20px;
}

.degree-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 18px;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-content p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* =========================
   SKILLS
========================= */

.skills-section {
  background: var(--cream);
  padding: 120px 8%;
}

.skills-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.skills-left h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  line-height: 0.9;
  color: var(--red);
  margin-bottom: 60px;
}

.certification {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--red);
  margin-bottom: 35px;
  font-size: 1.3rem;
}

.cert-icon {
  font-size: 2rem;
}

.skills-right {
  background: var(--pink);
  padding: 50px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.skill-card {
  background: white;
  padding: 18px;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
}

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

@media (max-width: 900px) {
  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
  }

  .script-word {
    font-size: 5rem;
  }

  .portfolio-word {
    font-size: 5.5rem;
  }

  .about-container,
  .skills-wrapper {
    grid-template-columns: 1fr;
  }

  .about-content h2,
  .skills-left h2 {
    font-size: 4rem;
  }
}
/* =========================
   EXPERIENCE
========================= */

.experience-section {
  background: #b71c1c;
  padding: 140px 8%;
}

.experience-header {
  text-align: center;
  margin-bottom: 80px;
}

.experience-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  color: white;
  font-weight: 400;
  margin-bottom: 20px;
}

.experience-header p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.timeline {
  max-width: 1100px;
  margin: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 250px 1fr;

  gap: 40px;

  margin-bottom: 60px;
}

.timeline-date {
  color: #f7dcdc;
  font-weight: 600;
  letter-spacing: 1px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.08);

  padding: 35px;

  border-radius: 12px;

  backdrop-filter: blur(8px);
}

.timeline-content h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.timeline-content h4 {
  color: #ffd8d8;
  margin-bottom: 20px;
  font-weight: 500;
}

.timeline-content p {
  color: white;
  line-height: 1.8;
  margin-bottom: 20px;
}

.timeline-content ul {
  padding-left: 20px;
}

.timeline-content li {
  color: white;
  margin-bottom: 10px;
  line-height: 1.6;
}

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

  .experience-header h2 {
    font-size: 4.5rem;
  }
}
/* =========================
   PROJECTS
========================= */

.projects-section {
  background: #f7f4f2;
  padding: 140px 8%;
}

.projects-header {
  text-align: center;
  margin-bottom: 80px;
}

.projects-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  font-weight: 400;
  color: #b71c1c;

  margin-bottom: 20px;
}

.projects-header p {
  max-width: 700px;
  margin: auto;

  color: #555;
  line-height: 1.8;
}

.projects-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.project-card {
  background: white;

  padding: 45px;

  border-radius: 12px;

  text-decoration: none;

  transition: all 0.35s ease;

  border: 1px solid rgba(183, 28, 28, 0.08);
}

.project-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.08);
}

.project-number {
  font-family: "Cormorant Garamond", serif;

  color: #b71c1c;

  font-size: 4rem;

  margin-bottom: 25px;
}

.project-card h3 {
  color: #b71c1c;

  font-size: 1.7rem;

  margin-bottom: 20px;
}

.project-card p {
  color: #555;

  line-height: 1.8;

  margin-bottom: 30px;
}

.project-card span {
  color: #b71c1c;

  font-weight: 600;
}

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

  .projects-header h2 {
    font-size: 4.5rem;
  }
}
/* =========================
   CAMPAIGNS
========================= */

.campaigns-section {
  background: #b71c1c;
  padding: 140px 8%;
}

.campaigns-header {
  text-align: center;
  margin-bottom: 80px;
}

.campaigns-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  color: white;
  font-weight: 400;

  margin-bottom: 20px;
}

.campaigns-header p {
  color: rgba(255, 255, 255, 0.85);

  max-width: 700px;
  margin: auto;

  line-height: 1.8;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 35px;
}

.campaign-card {
  background: white;

  border-radius: 12px;

  overflow: hidden;

  transition: 0.35s ease;
}

.campaign-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.campaign-card img {
  width: 100%;
  height: auto;

  display: block;
}

.campaign-content {
  padding: 30px;
}

.campaign-content h3 {
  color: #b71c1c;

  font-size: 1.8rem;

  margin-bottom: 15px;
}

.campaign-content p {
  color: #555;

  line-height: 1.8;
}

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

  .campaigns-header h2 {
    font-size: 4.5rem;
  }
}
/* =========================
   CONTACT
========================= */

.contact-section {
  background: #f7f4f2;
  padding: 140px 8%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

  max-width: 1400px;
  margin: auto;
}

.contact-left h2 {
  font-family: "Cormorant Garamond", serif;

  font-size: 8rem;
  line-height: 0.9;

  color: #b71c1c;

  font-weight: 400;

  margin-bottom: 40px;
}

.contact-text {
  color: #555;

  line-height: 1.9;

  max-width: 550px;

  margin-bottom: 50px;
}

.contact-links {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.contact-card {
  text-decoration: none;

  background: white;

  color: #b71c1c;

  padding: 22px 30px;

  border-radius: 10px;

  font-weight: 600;

  transition: 0.3s ease;

  width: fit-content;

  min-width: 250px;
}

.contact-card:hover {
  transform: translateX(10px);
}

.static-card:hover {
  transform: none;
}

.contact-right {
  display: flex;
  justify-content: center;
}

.contact-right img {
  width: 100%;
  max-width: 550px;

  border-radius: 15px;

  display: block;
}

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

.footer {
  background: #b71c1c;

  padding: 30px;

  text-align: center;
}

.footer p {
  color: white;

  letter-spacing: 1px;
}

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

.contact-right img {
  width: 500px;

  height: 600px;

  object-fit: cover;

  object-position: 25% center;

  border-radius: 0;
}
.about-container,
.skills-wrapper,
.timeline,
.projects-grid,
.campaigns-grid,
.contact-container {
  max-width: 1700px;
  margin: 0 auto;
}
.skills-left h2,
.about-content h2,
.experience-header h2,
.projects-header h2,
.campaigns-header h2 {
  font-size: 5.5rem;
}
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.hero-title {
  animation: heroReveal 1.4s ease forwards;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.campaign-card {
  overflow: hidden;
}

.campaign-card img {
  transition: transform 0.5s ease;
}

.campaign-card:hover img {
  transform: scale(1.05);
}
.nav-links a {
  position: relative;
}

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

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

  width: 0;
  height: 2px;

  background: #b71c1c;

  transition: 0.3s;
}

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