@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --bg-cream: #FAF6F0;
  --bg-beige: #F5EFE6;
  --bg-card: #FFFFFF;
  --color-espresso: #2C1E18;
  --color-espresso-rgb: 44, 30, 24;
  --color-burgundy: #6B1D2F;
  --color-burgundy-hover: #521422;
  --color-muted: #6E5E55;
  --color-gold: #C5A880;
  --color-gold-light: #EADBC8;
  --color-white: #FFFFFF;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Layout and Spacing */
  --container-max: 1200px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  --shadow-subtle: 0 8px 30px rgba(44, 30, 24, 0.04);
  --shadow-medium: 0 16px 40px rgba(44, 30, 24, 0.08);
  --shadow-strong: 0 24px 60px rgba(44, 30, 24, 0.12);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 32px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-cream);
  color: var(--color-espresso);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

p {
  font-size: 1.05rem;
  color: var(--color-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

/* Decorative Ornaments */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: 50px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.ornament::before {
  background: linear-gradient(to left, var(--color-gold), transparent);
}

.ornament-dots {
  display: inline-flex;
  gap: 6px;
}

.ornament-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

.ornament-dots span:nth-child(2) {
  transform: scale(1.3);
  background-color: var(--color-burgundy);
}

/* Header Styles */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 1.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: -2px;
}

.badge-public {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}

/* Background Slideshow */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(var(--color-espresso-rgb), 0.5) 0%, rgba(var(--color-espresso-rgb), 0.8) 100%);
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Disabled CTA Button Style */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-burgundy);
  color: var(--color-white);
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--color-burgundy);
  border-radius: 50px;
  opacity: 0.8;
  cursor: not-allowed;
  position: relative;
  box-shadow: 0 10px 30px rgba(107, 29, 47, 0.3);
  transition: var(--transition-smooth);
}

.btn-premium-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-premium-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Information Section */
.info-section {
  background-color: var(--bg-cream);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem) auto;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-burgundy);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-espresso);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-muted);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.info-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.2rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(44, 30, 24, 0.03);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-gold), var(--color-burgundy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--color-burgundy);
  transition: var(--transition-smooth);
}

.card-icon {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.card-title {
  font-size: 1.4rem;
  color: var(--color-espresso);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Card Hover Effects */
.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(197, 168, 128, 0.2);
}

.info-card:hover::after {
  transform: scaleX(1);
}

.info-card:hover .card-icon-wrapper {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  transform: scale(1.05);
}

/* About Section */
.about-section {
  background-color: var(--bg-beige);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-content {
  padding-right: 1rem;
}

.about-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-espresso);
}

.about-text {
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-highlight {
  border-left: 3px solid var(--color-burgundy);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-espresso);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.signature-line {
  height: 1px;
  width: 40px;
  background-color: var(--color-gold);
}

.signature-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* About Image side */
.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  aspect-ratio: 4 / 5;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background-color: var(--bg-card);
  padding: 1.25rem 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  border: 1px solid rgba(44, 30, 24, 0.05);
}

.about-badge-icon {
  width: 40px;
  height: 40px;
  stroke: var(--color-burgundy);
  stroke-width: 1.5;
  fill: none;
}

.about-badge-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-espresso);
}

.about-badge-desc {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Location & Hours Section */
.location-section {
  background-color: var(--bg-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.location-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(44, 30, 24, 0.03);
  display: flex;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.location-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-burgundy);
  flex-shrink: 0;
}

.location-icon {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-details h3 {
  font-size: 1.5rem;
  color: var(--color-espresso);
  margin-bottom: 0.5rem;
}

.location-details p {
  font-size: 1.05rem;
  color: var(--color-muted);
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px dashed rgba(44, 30, 24, 0.1);
  padding-bottom: 0.5rem;
}

.hours-day {
  font-weight: 600;
  color: var(--color-espresso);
}

.hours-time {
  color: var(--color-muted);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-beige);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 30, 24, 0.8) 0%, rgba(44, 30, 24, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-tag {
  color: var(--color-gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.gallery-title {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Gallery Hover effects */
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Gallery Layout Spans (Masonry Effect) */
.gallery-item.span-2-w {
  grid-column: span 2;
}

.gallery-item.span-2-h {
  grid-row: span 2;
}

.gallery-item.span-2-both {
  grid-column: span 2;
  grid-row: span 2;
}

/* Footer Section */
.site-footer {
  background-color: var(--color-espresso);
  color: var(--color-white);
  padding: 5rem 0 3rem 0;
  position: relative;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--color-gold);
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-nav-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-nav-item:hover {
  color: var(--color-gold-light);
}

.footer-nav-separator {
  color: var(--color-gold);
  opacity: 0.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

/* Animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(197, 168, 128, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
  }
}

/* Scroll Animation States */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-content {
    padding-right: 0;
    text-align: center;
  }
  .about-signature {
    justify-content: center;
  }
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .badge-public {
    display: none; /* Hide top badge on small devices to keep header clean */
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.span-2-w, 
  .gallery-item.span-2-both {
    grid-column: span 2;
  }
  .gallery-item.span-2-h {
    grid-row: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .location-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hours-item {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .gallery-item.span-2-w, 
  .gallery-item.span-2-both {
    grid-column: span 1;
  }
}
