:root {
  --font-primary: "Sour Gummy", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --color-background: #9EBFB7;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow-x: hidden;
}
body {
  display: block;
  margin-bottom: 0;
  padding-top: 50px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 50px 20px 0;
  padding-top: 100px;
}

@media (max-height: 768px) {
  .hero {
    min-height: 90vh;
    padding: 10px;
    padding-top: 80px;
  }
}

@media (min-width: 992px) {
  .hero {
    align-items: center;
    min-height: auto;
  }
}

.hero img {
  max-width: 90%;
  height: auto;
  margin-bottom: 0;
}

h1.hero-title {
  text-align: center;
  font-size: 2.5rem;
  font-family: var(--font-primary);
  color: black;
  margin-bottom: 30px;
}

.container .btn-primary {
  background-color: var(--color-background);
  border: none;
  font-family: var(--font-primary);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.container .btn-primary:hover {
  background-color: #9bdbf8;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero .row {
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.hero p {
  margin-bottom: 40px;
}

.navbar {
  background-color: var(--color-background);
  font-family: var(--font-primary);
}

.navbar .nav-link {
  color: #ffffff;
  font-size: 20px;
  margin-right: 20px;
}

.navbar .navbar-brand {
  font-size: 24px;
  margin-left: 25px;
}

.navbar-nav .nav-item:last-child {
  margin-right: 25px;
}

.hero p {
  font-family: var(--font-primary);
  font-size: 20px;
}

@media (max-width: 768px) {
  .about-page {
    min-height: 100%;
  }

  .about-page .row {
    display: flex;
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }

  .about-page h1 {
    font-size: 2.5rem;
  }

  .about-page .row .col-md-6 {
    margin-bottom: 20px;
  }
}

.about-page img {
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.custom-card-img {
  max-height: 180px;
  object-fit: cover;
}

.section-light {
  background-color: #eaf6f6;
}

.section-white {
  background-color: white;
}

#cakes,
#kit-festa,
#customise {
  scroll-margin-top: 100px;
}

.card,
.card-title,
.card-text,
.card-body,
.section-light p,
.section-white p,
#cakes p,
#kit-festa p,
#customise p {
  font-family: var(--font-primary);
}

.card-title {
  font-size: 1.25rem;
}

.card-text {
  font-size: 0.95rem;
}

h2,
h3,
h4 {
  font-family: var(--font-primary);
}

#customise {
  padding-bottom: 2rem;
}

div.contact-me {
  flex: 1;
  background-color: white;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-me p {
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 1.5rem;
  color: var(--color-background);
}

@media (max-width: 576px) {
  .contact-me p {
    font-size: 1.1rem;
  }
}

.contact-subtitle {
  text-align: center;
  font-size: 1.8rem;
}

.about-us {
  font-family: var(--font-primary);
}

footer {
  margin: 60px 0;
}

footer .contact-box {
  color: white;
  background: #609587;
  padding: 30px;
  border-radius: 10px;
}

footer .email-link {
  font-family: var(--font-primary);
  text-decoration: none;
  color: white;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

footer .email-link:hover {
  color: #9bdbf8;
}

footer .social-links a {
  margin: 0 5px;
  color: #609587;
  background: white;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 100ms easy-in-out;
}

footer .social-links a:hover {
  color: white;
  background: #9ebfb7;
}


