/* ========================= */
/* RESET */
/* ========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #07131d;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ========================= */
/* GLOBAL */
/* ========================= */

section {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  color: #ff4db8;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-title h2 {
  margin-top: 15px;
  font-size: 3rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 32px;

  border-radius: 100px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    #ff1493,
    #ff4db8
  );

  color: white;

  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  background: rgba(255,255,255,0.05);

  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
  width: 100%;

  position: fixed;
  top: 0;
  left: 0;

  padding: 24px 8%;

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

  z-index: 999;

  background: rgba(7, 19, 29, 0.45);

  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo a {
  color: white;
  text-decoration: none;

  font-size: 1.3rem;
  font-weight: 800;

  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 35px;

  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 500;

  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ff4db8;
}

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

.hero {
  position: relative;

  min-height: 100vh;

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

  text-align: center;

  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.55)
    ),
    url('../images/hero-bg.jpg');

  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top,
      rgba(255,20,147,0.25),
      transparent 45%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
}

.hero-tag {
  display: inline-block;

  margin-bottom: 20px;

  padding: 10px 20px;

  border-radius: 100px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.15);

  backdrop-filter: blur(10px);

  font-size: 0.85rem;
  font-weight: 600;

  letter-spacing: 2px;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.05;

  font-family: 'Playfair Display', serif;

  margin-bottom: 30px;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.8;

  color: rgba(255,255,255,0.8);

  max-width: 750px;

  margin: auto auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services {
  background: #0b1824;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  );

  gap: 30px;
}

.service-card {
  padding: 40px;

  border-radius: 30px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255, 20, 147, 0.4);
}

.service-card h3 {
  margin-bottom: 20px;

  font-size: 1.4rem;
}

.service-card p {
  line-height: 1.8;

  color: rgba(255,255,255,0.75);
}

/* ========================= */
/* PORTFOLIO */
/* ========================= */

.portfolio {
  background: #07131d;
}

.portfolio-grid {
  display: grid;

  grid-template-columns: repeat(
    auto-fit,
    minmax(350px, 1fr)
  );

  gap: 30px;
}

.portfolio-card {
  position: relative;

  min-height: 500px;

  border-radius: 35px;

  overflow: hidden;

  text-decoration: none;

  background:
    linear-gradient(
      rgba(0,0,0,0.2),
      rgba(0,0,0,0.65)
    ),
    url('../images/natalie-preview.jpg');

  background-size: cover;
  background-position: center 38%;

  display: flex;
  align-items: end;

  transition: 0.4s ease;
}

.portfolio-card:hover {
  transform: scale(1.02);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(3, 8, 18, 0.15) 0%,
      rgba(3, 8, 18, 0.55) 55%,
      rgba(0, 0, 0, 0.92) 100%
    );
}

.portfolio-content {
  position: relative;
  z-index: 2;

  padding: 40px;
}

.portfolio-content span {
  color: #ff4db8;

  font-size: 0.9rem;
  font-weight: 700;

  letter-spacing: 2px;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.portfolio-content h3 {
  margin: 15px 0;

  font-size: 2rem;

  font-family: 'Playfair Display', serif;

  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.85);
}

.portfolio-content p {
  line-height: 1.7;

  color: rgba(255,255,255,0.9);

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.upcoming {
  background:
    linear-gradient(
      rgba(255,20,147,0.15),
      rgba(0,0,0,0.75)
    );
}

/* ========================= */
/* CTA */
/* ========================= */

.cta {
  position: relative;

  background:
    linear-gradient(
      135deg,
      #ff1493,
      #6a00ff
    );

  text-align: center;

  overflow: hidden;
}

.cta::before {
  content: '';

  position: absolute;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: rgba(255,255,255,0.08);

  top: -250px;
  right: -200px;
}

.cta-content {
  position: relative;
  z-index: 2;

  max-width: 800px;

  margin: auto;
}

.cta-content span {
  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-size: 0.9rem;
}

.cta-content h2 {
  margin: 25px 0;

  font-size: 3.5rem;

  font-family: 'Playfair Display', serif;
}

.cta-content p {
  line-height: 1.8;

  margin-bottom: 40px;

  color: rgba(255,255,255,0.85);
}

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

.contact {
  background: #0b1824;
}

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

.contact-card {
  max-width: 600px;
  width: 100%;

  text-align: center;

  padding: 60px;

  border-radius: 35px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );

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

.contact-card h3 {
  margin-bottom: 20px;

  font-size: 2rem;
}

.contact-card p {
  margin-bottom: 35px;

  line-height: 1.8;

  color: rgba(255,255,255,0.75);
}

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

.footer {
  padding: 40px 8%;

  text-align: center;

  background: #050d14;

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

.footer p {
  margin-bottom: 10px;

  color: rgba(255,255,255,0.7);
}

.footer span {
  color: #ff4db8;

  font-size: 0.9rem;
}

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

@media (max-width: 992px) {

  .hero h1 {
    font-size: 3.8rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2.8rem;
  }

}

@media (max-width: 768px) {

  section {
    padding: 80px 7%;
  }

  .navbar {
    padding: 20px 7%;
  }

  .nav-links {
    display: none;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 2rem;
  }

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

  .portfolio-card {
    min-height: 420px;
    background-position: center 35%;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .contact-card {
    padding: 40px 30px;
  }

}

@media (max-width: 480px) {

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-tag {
    font-size: 0.75rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 30px;
  }

}