/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts */
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background-color: #f9f5f0;
  color: #3e2c2a;
}

header {
  background: url("images/background.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}


.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.tagline {
  font-style: italic;
  margin-bottom: 10px;
}

nav {
  margin: 10px 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d4af37;
}

nav a:visited {
  color: #fff;
}

nav a.active {
  color: #d4af37;
  font-weight: bold;
}


.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  margin: 0 8px;
  font-size: 1.2rem;
}

section {
  padding: 40px 20px;
  text-align: center;
}

#welcome {
  background-color: #d7ccc8;
}

#services {
  background-color: #efebe9;
}

#gallery {
  background-color: #f3e5f5;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#contact {
  background-color: #d7ccc8;
}

footer {
  background-color: #4e342e;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  nav, .social-icons {
    display: block;
    margin: 10px 0;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background-color: #fff8f3;
  color: #3e2c2a;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 20px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* --- Optimized Marquee Section --- */
.marquee {
  overflow: hidden;
  width: 80%;           /* Medium "file size" (visual width) */
  max-width: 1000px;    /* Prevents it from getting too huge on ultrawide monitors */
  margin: 0 auto;       /* Centers the marquee on the page */
  white-space: nowrap;  /* Ensures content stays in a single line */
  padding: 20px 0;
}

.marquee-track {
  display: flex;        /* Aligns items horizontally */
  gap: 40px;            /* Adds professional spacing between items */
  width: max-content;
  animation: scroll 22s linear infinite; /* Professional speed: steady and readable */
}

/* Pause on hover: a high-end UX touch so users can read specific items */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .marquee {
    width: 95%;         /* Gives more room on small screens */
  }
  .marquee-track {
    animation-duration: 15s; /* Slightly faster for shorter distances */
  }
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.header-overlay {
  background-color: rgba(0, 0, 0, 0.4); /* subtle black overlay */
  padding: 40px 20px;
  border-radius: 0;
}

.logo img {
  width: 45%;
  max-width: 500px;
  height: auto;
}

@media (max-width: 600px) {
  .logo img {
    width: 120px;
  }
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #3e2c2a;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #4e342e;
}

.hours-container {
  max-width: 500px;
  margin: 0 auto; /* ✅ Centers the whole container */
  background-color: #fff8f3;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: left; /* 👈 Makes sure list stays readable */
}

.hours-container ul {
  list-style: none;     /* ✅ Removes bullets */
  padding-left: 0;      /* ✅ No indent */
  margin: 0 auto;       /* 👈 Centers the UL itself */
}

/* All linked colors */

a {
  color: #ffffff; /* or whatever your base link color is */
  text-decoration: none;
}

a:visited {
  color: #3e2c2a; /* match the unvisited color */
}

a:hover {
  color: #d4af37; /* gold highlight */
}

a:active {
  color: #d4af37;
}


