@charset "utf-8";

/* CSS Document */

* {
  box-sizing: border-box;
}

.heading {
  display: block;
}

body {
  font-size: 1em;
  line-height: 1.3em;
  background-color: #fff;
}

/* Fixed ID casing consistency: #Pageheader -> #PageHeader */
#PageHeader {
  background-color: white;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 20px;
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

#PageHeader nav {
  display: flex;
  justify-content: flex-end;
  margin-right: 20px;
}

#PageHeader nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

#PageHeader nav ul li {
  display: inline-block;
  padding: 10px;
  color: #0C243C;
}

#PageHeader nav ul li a {
  color: #0C243C;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: none;
}

#PageHeader nav ul li a:hover,
#PageHeader nav ul li a:visited {
  color: #0C243C;
}

#PageHeader nav ul li a.active {
  border-bottom: 3px solid #E94D40;
  color: #E94D40;
}

.main-nav ul {
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav a {
  color: #0C243C;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #E94D40;
}

.burntred {
  color: #E94D40;
}

.navyblue {
  color: #0C243C;
}

.specialcakesfont {
  font-family: Arial;
}

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.clearboth {
  clear: both;
}

#PageFooter {
  background-color: #0C243C;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  font-family: Arial;

}

.cakedisplay {
  width: 550px;
  max-width: 100%;
}

.flexgrid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.cakeitem {
  flex: 1 1 calc(33.333% - 20px);
  background-color: #ffffff;
  padding: 15px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 20px;
  margin-right: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.table tbody tr:nth-of-type(odd) {
  background-color: #f1f5f9;
}

.table thead {
  background-color: #0C243C;
  color: white;
}

.table th,
.table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #0C243C;
  background-color: transparent;
}

.three-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 40px;
}

#PageMaincontact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  max-width: 1000px;
  padding-bottom: 40px;
}

#PageMainabout {
  padding-left: 100px;
  padding-bottom: 40px;
  font-family: Arial, Helvetica, sans-serif;
}

.specialcake {
  width: 400px;
  height: 300px;
  border-radius: 5px;
}

.two-column {
  display: flex;
  align-items: center;
  width: 1200px;
  gap: 50px;
  padding: 50px 0 40px 160px;
}

.one-half-column,
.onehalfcolumn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contactform,
.mailinglistform {
  font-family: Arial;
  box-sizing: border-box;
  padding: 10px 20px 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contactform {
  max-width: 200px;
}

.mailinglistform {
  max-width: 400px;
}

.contactform h2,
.mailinglistform h2 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #0C243C;
  font-family: Arial;

}

.contactform p,
.mailinglistform p {
  font-size: 13px;
  margin: 4px 0;
  font-family: Arial;

}

.contactform label,
.mailinglistform label {
  font-size: 14px;
  margin-bottom: 1px;
  font-weight: bold;
  display: flex;
}

.contactbutton {
  background-color: #0C243C;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
}

.contactbutton a.active,
.contactbutton a:hover {
  color: #E94D40;
}

#PageBanner {
  padding-left: 100px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.tiramisu {
  width: 420px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.cakeassortment {
  width: 100%;
  max-width: 420px;
  height: 400px;
  border-radius: 12px;
}

#PageBannerHome {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.rightcolumn {
  flex: 1;
  background-color: #fdf5f5;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.leftcolumn {
  flex: 1;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial;
}

.body2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial;
}

.macaron {
  max-width: 450px;
  max-height: 300px;
  border-radius: 5px;
  flex: 1;
  display: flex;
  justify-content: center;
}

.cakeIcing900 {
  max-width: 450px;
  max-height: 300px;
  border-radius: 5px;
  margin-top: 20px;
}

.privacymenu {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  font-family: Arial;

}

.privacymenulink {
  padding: 0;
  color: white;
}

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5 {
  color: #E94D40;
  font-family: Arial;
}

.typography p {
  color: #0C243C;
  font-family: Arial;
}
