
:root {
  --color-bg: #f1f4ed;
  --color-black: #000;
  --color-white: #fff;
  --color-pink-accent: #ffd7ef;
  --color-pink-glow: rgb(251, 143, 161);
  --color-header-bg: rgb(252, 252, 252);
  --color-dark-text: #313131;

  --font-display: 'Bruno Ace SC', sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-content: 'Poppins', var(--font-body);

  --header-height: 68px;
  --max-width: 1200px;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-header-bg);
  padding: 0 clamp(1rem, 4vw, 3.5rem);
  height: var(--header-height);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-radius: 0 0 2rem 2rem;
  border: 2px solid black;
  opacity: 0.97;
}

.OMG_LOGO {
  font-family: var(--font-display);
  color: var(--color-dark-text);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* Desktop nav links */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header a {
  color: black;
  text-align: center;
  padding: 0.45rem 0.85rem;
  text-decoration: none;
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  border-radius: 4px;
  font-family: var(--font-display);
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.header a:hover,
.header a.active {
  background-color: var(--color-pink-accent);
  color: black;
}

/* ---- Hamburger button (hidden on desktop) ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: black;
  border-radius: 2px;
  transition: all 0.25s ease;
}


.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media screen and (max-width: 640px) {
  .hamburger {
    display: flex;
  }

  .header-right {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--color-header-bg);
    padding: 0.75rem 1.25rem 1.25rem;
    border: 2px solid black;
    border-top: none;
    border-radius: 0 0 1.5rem 1.5rem;
    gap: 0.25rem;
  }

  .header-right.open {
    display: flex;
  }

  .header a {
    text-align: left;
    width: 100%;
    padding: 0.65rem 0.75rem;
    font-size: 1rem;
  }
}


.main_page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--header-height) + clamp(2rem, 6vw, 4rem));
  padding-bottom: clamp(4rem, 8vw, 6rem);
  padding-left: 1rem;
  padding-right: 1rem;
  min-height: 100svh;
}

.bg_img1 {
  background-image: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), url("/images/backimg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px), (hover: none) {
  .bg_img1 {
    background-attachment: scroll;
  }
}

.image {
  width: min(640px, 88vw);
  height: auto;
  margin: 0 auto;
}

/* Typewriter headline */
.quote_txt {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-shadow: 0 8px 40px var(--color-pink-glow);
  text-align: center;
  line-height: 1.3;
  padding: 0 1rem;
  margin: 1.5rem 0;
  max-width: 900px;
}

.container1 {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.second_div {
  position: relative;
  background-color: black;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.row::after {
  display: none; 
}

.column {
  float: none;
  width: 100%;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-family: var(--font-content);
  color: white;
  text-align: center;
  padding: 1rem 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .column {
    padding: 0.75rem 1rem;
  }
}


.third_div {
  min-height: 560px;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
  background-color: rgb(255, 184, 240);
  background-image: linear-gradient(rgb(255 255 255 / 73%), rgb(8 4 8)), url(/images/backimg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px), (hover: none) {
  .third_div {
    background-attachment: scroll;
  }
}


.section-header {
  text-align: center;
  padding: 0 1rem 2rem;
}

.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
}

.section-header p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  opacity: 0.75;
  margin-top: 0.4rem;
}


.fourth_div {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.table-container {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow-x: auto;          
  -webkit-overflow-scrolling: touch;
}


.section5 {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}


.quote-section {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 4rem);
}

.footer {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 4vw, 2rem);
}