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

body {
  font-family: 'Open Sans', sans-serif;
  color: #ffffff;
  background-color: #2671c0;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5em;
  color: #ffffff;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  padding-top: 2rem;
}

h2 {
  font-size: 1.8rem;
  text-align: center;
  margin: 2rem 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #f0f8ff;
}

/* NAVIGATION */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
}

.nav-container .logo {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #2671c0;
}

.nav-container nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-container nav ul li a {
  text-decoration: none;
  color: #2671c0;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-container nav ul li a:hover {
  color: #1451a3;
}

.cta {
  background-color: #2671c0;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #1451a3;
}

/* HERO */
.hero {
  background-color: #1451a3;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* BUTTON */
.btn-primary {
  background-color: #ffffff;
  color: #2671c0;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #f0f0f0;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.product-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s;
  color: #2671c0;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

/* PAGE WRAPPER */
.product-page, .contact-page, .locations-page {
  padding: 2rem;
  background-color: #2671c0;
}

/* FORMS */
.newsletter, .contact-form {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
  color: #2671c0;
}

form {
  max-width: 500px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, button {
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Open Sans', sans-serif;
}

button {
  background-color: #2671c0;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #1451a3;
}

/* FOOTER */
footer {
  background-color: #ffffff;
  padding: 2rem;
  font-size: 0.9rem;
  color: #2671c0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.footer-columns div {
  flex: 1;
  min-width: 150px;
  margin: 1rem 0;
}

.footer-columns h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.footer-columns ul {
  list-style: none;
}

.footer-columns ul li {
  margin-bottom: 0.5rem;
}

.footer-columns ul li a {
  color: #2671c0;
  text-decoration: none;
}

.footer-columns ul li a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  margin-top: 1rem;
}
