/* =============================================================
   THE CONTROL PANEL
   These are CSS variables. Every colour and font on the site
   points back to this block. Change a value here, save, and
   watch the whole site update at once.

   TODO (Day 2): Swap these grey placeholders for the palette
   and fonts from your team's Design Brief.
   ============================================================= */
:root {
  --color-background: rgba(64, 133, 115, 0.267); /* page background */
  --color-primary: #; /* hero section */
  --color-accent: #232d23 /* call-to-action section */ --color-text: #ffffff;
  --font-heading: "Ceviche One", sans serif;
  --font-body: "Special Elite", Georgia, serif;
}
.container li {
 background-color: rgb(75, 108, 240);
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 25px rgba(162, 239, 180, 0.6);
 
 display: inline-block;
  margin-top: 20px;
  padding: 6px 30px;
  background-color: rgb(94, 174, 234);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.container li:hover {
  background-color: rgb(75, 108, 240);
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 25px rgba(162, 239, 180, 0.6);
}

.container a {
color: rgb(0, 0, 0);

}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  background-image: url(images/background6.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
  margin: 0 auto;
  padding: 0;
}
head {
  margin: 30px;
}
h1,
h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  text-align: left;
}
h2 {
  font-size: 50px;
  text-align: center;
}
.hero h1 {
  background-color:#7eeeff;
  width: 100%;
}

h1:hover {
  color: var(--color-accent);
  transform: scale(1.05);
}

/* Images never overflow their section. */
img {
  max-width: 80%;
  align-items: center;
  height: 550px;
  width: 500px;

  margin-top: 40px;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgb(0, 0, 0, 0.4);
}
/* === HERO SECTION === */
.hero {
  background-color: var(--color-primary);
  color: #0a0404;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero p {
  padding-left: 150px;
  padding-right: 150px;
}

/* === WHY IT MATTERS SECTION === */
.about {
  background-image: url(images/background1.png);
  background-repeat: no-repeat;
  padding-bottom: 40px;
  border-radius: 30px;
  text-align: center;
  margin: 90px;
}
.about img {
  height: 600px;
  width: 800px;
}

/* === CALL TO ACTION SECTION === */
.cta {
  background-color: var(--color-accent);
  color: #120505;
  text-align: center;

  padding: 50px 40px;
  margin-top: 20px;
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 40px;
  background-color: rgb(110, 236, 255);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cta-button:hover {
  background-color: rgb(7, 175, 175);
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 25px rgba(162, 239, 180, 0.6);
}

.cta a {
  color: #000000;
  font-weight: bold;
}

.container{
  max-width: 100%;
  margin: auto;
  padding: 20px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.nav_links a{
  text-decoration: none;
  font-weight:bold;
}

.nav-links {
  list-style: none;
  display:flex;
  gap:100px;
}

header {
  display:flex;
  justify-content: space-between;
  background-color:rgb(66, 109, 236);
}
/* =============================================================
   Notice what is NOT here yet: no spacing, no rounded corners,
   no shadows, no layout, no motion. That is the rest of your
   week. Day 3: spacing & decoration. Day 4: layout & motion.
   ============================================================= */
