:root {
  --primary-color: #2A5D65;     /* Dark Teal (from logo) */
  --secondary-color: #C3DFD0;   /* Mint Green (from logo) */
  --accent-color: #E6BC70;      /* Gold/Tan (from logo banner) */
  --background-color: #F8F5F0;  /* Light Cream */
  --text-color: #2A5D65;        /* Dark Teal */
}

body {
  font-family: 'Quicksand', 'Segoe UI', Tahoma, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
}

.header {
  background: var(--secondary-color);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.site-logo {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.main-menu a {
  font-weight: bold;
  transition: all 0.3s ease;
  color: var(--primary-color) !important;
}

.main-menu a:hover {
  color: var(--accent-color) !important;
  transform: scale(1.05);
}

/* Prevent line breaks in brand tagline */
.brand-tagline {
  white-space: nowrap;
  display: block;
  font-size: 0.95rem;
}

/* Better homepage title styling */
.home-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: var(--primary-color);
}

.home-title:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  background: var(--accent-color);
  bottom: -10px;
  left: 20%;
  border-radius: 2px;
}

.product-card {
  border-radius: 15px;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-title {
  color: var(--primary-color);
  font-weight: bold;
  border-bottom: 2px dashed var(--accent-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.product-ingredients {
  font-style: italic;
  color: #6c757d;
}

.home-info {
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.btn-ice-cream {
  background-color: var(--primary-color);
  color: white;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.btn-ice-cream:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}

.hours-container {
  background-color: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-top: 2rem;
}

.hours-title {
  color: var(--primary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.footer {
  background: var(--secondary-color);
  border-radius: 20px 20px 0 0;
  padding: 2rem 0;
  margin-top: 3rem;
  color: var(--primary-color);
}

/* For the about page */
.founder-info {
  background-color: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Order page styling */
.order-coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.order-coming-soon h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
}

/* Decorative elements */
.ice-cream-decoration {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}

/* Animation for hover effects */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.float-animation:hover {
  animation: float 3s ease-in-out infinite;
} 