@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@600;700&display=swap');

/* VARIABLES */
:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --color-bg: #f4f6f8;
  --color-card: #ffffff;
  --color-text: #1a1a1a;
  --color-gold: #FFC400;

  --header-grad-start: #55679B;
  --header-grad-end: #55679B;

  --footer-grad-start: #616161;
  --footer-grad-end: #212121;

  --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  padding-top: 90px;
}

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, var(--header-grad-start), var(--header-grad-end));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #fff;
}

.nav-menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ABOUT SECTION */
.about-content {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
  transition: transform 0.3s ease;
}

.about-content:hover {
  transform: translateY(-4px);
}

.about-text {
  max-width: 600px;
  text-align: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--header-grad-end);
}

.about-text p {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.about-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--color-gold);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* CARD SECTIONS */
main section {
  background: var(--color-card);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 2.5rem 0;
}

main h2 {
  font-family: var(--font-heading);
  color: var(--header-grad-end);
  font-size: 2rem;
  margin-bottom: 1rem;
}

main h3 {
  color: var(--color-gold);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-size: 1.2rem;
}

main ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

main li {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(to right, var(--footer-grad-start), var(--footer-grad-end));
  padding: 2rem 0;
  text-align: center;
  font-size: 1rem;
  color: #e0e0e0;
  margin-top: 3rem;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 4rem;
  }

  .about-text {
    text-align: left;
  }

  .nav-menu ul {
    gap: 2.5rem;
  }
}
