/* Minimalist Botanical Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Alex+Brush&display=swap');

:root {
  --bot-bg: #fdfdfc; /* Off-white */
  --bot-text: #344e41; /* Forest Green */
  --bot-text-light: #588157;
  --bot-accent: #a3b18a; /* Sage Green */
  --bot-gold: #cca43b; /* Soft Gold */
  
  --font-serif: 'Playfair Display', serif;
  --font-script: 'Alex Brush', cursive;
}

body {
  margin: 0; padding: 0;
  background-color: var(--bot-bg);
  color: var(--bot-text);
  font-family: var(--font-serif);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.8;
}

/* Base Layout Container */
.botanical-container {
  max-width: 500px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: #fff;
  box-shadow: 0 0 50px rgba(0,0,0,0.03);
  overflow: hidden;
}

/* Color Filter Customization for PNG Assets */
:root {
  --leaf-filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); 
}

/* Lush Canopy (Top - Hanging down) */
.bot-canopy {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 150px;
  pointer-events: none; z-index: 1;
}
.bot-canopy img {
  position: absolute;
  filter: var(--leaf-filter);
}
/* Top Left Corner */
.bot-canopy .lc-1 { width: 100px; top: -30px; left: -20px; transform: rotate(135deg); opacity: 0.95; }
.bot-canopy .lc-2 { width: 70px; top: -20px; left: 40px; transform: rotate(160deg); opacity: 0.7; z-index:-1; }
/* Top Right Corner */
.bot-canopy .lc-3 { width: 110px; top: -35px; right: -25px; transform: rotate(-135deg); opacity: 0.95; }
.bot-canopy .lc-4 { width: 60px; top: -15px; right: 40px; transform: rotate(-160deg); opacity: 0.6; z-index:-1; }
/* Top Center Subtle */
.bot-canopy .lc-5 { width: 70px; top: -40px; left: 50%; transform: translateX(-50%) rotate(180deg); opacity: 0.4; }

/* Lush Bushes (Bottom - Growing up) */
.bot-bushes {
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 150px;
  pointer-events: none; z-index: 1;
}
.bot-bushes img {
  position: absolute;
  filter: var(--leaf-filter);
}
/* Bottom Left Corner */
.bot-bushes .lb-1 { width: 110px; bottom: -30px; left: -20px; transform: rotate(25deg); opacity: 0.95; }
.bot-bushes .lb-2 { width: 80px; bottom: -20px; left: 40px; transform: rotate(5deg); opacity: 0.7; z-index:-1; }
.bot-bushes .lb-3 { width: 60px; bottom: -10px; left: 80px; transform: rotate(40deg); opacity: 0.5; z-index:-2; }
/* Bottom Right Corner */
.bot-bushes .lb-4 { width: 120px; bottom: -35px; right: -25px; transform: rotate(-25deg); opacity: 0.95; }
.bot-bushes .lb-5 { width: 90px; bottom: -20px; right: 40px; transform: rotate(-5deg); opacity: 0.8; z-index:-1; }

/* Box Ornament */
.bot-leaf-section {
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: auto;
  pointer-events: none;
  z-index: 0;
  filter: var(--leaf-filter);
  opacity: 0.7;
  transform: rotate(-135deg);
}

/* Sections / Cards */
.botanical-section {
  position: relative;
  z-index: 2;
  padding: 50px 25px;
  text-align: center;
}
.botanical-section:not(:last-child)::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--bot-accent);
  margin: 0 auto;
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
}

/* Typography */
.bot-title {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--bot-text);
  margin: 0;
  line-height: 1.1;
}
.bot-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bot-accent);
  margin: 0 0 15px 0;
}
.bot-gold-text {
  color: var(--bot-gold);
}

/* Photos & Frames */
.arch-frame {
  border-radius: 100px 100px 0 0;
  border: 1px solid var(--bot-accent);
  padding: 5px;
  margin: 0 auto;
  position: relative;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.arch-frame img:not([class*="bot-leaf"]) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 95px 95px 0 0;
  filter: saturate(0.8) contrast(1.1);
}

.circle-frame {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid var(--bot-accent);
  padding: 5px;
  margin: 0 auto 15px auto;
}
.circle-frame img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Buttons */
.btn-botanical {
  display: inline-block;
  background: #fff;
  color: var(--bot-text);
  border: 1px solid var(--bot-accent);
  padding: 12px 30px;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 0;
}
.btn-botanical:hover {
  background: var(--bot-accent);
  color: #fff;
}
.btn-solid {
  background: var(--bot-accent);
  color: #fff;
  border: none;
}
.btn-solid:hover {
  background: var(--bot-text-light);
}

/* Cover Overlay */
.bot-cover {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bot-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 1.5s ease, visibility 1.5s;
  padding: 20px;
  overflow: hidden;
}
.bot-cover::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid var(--bot-accent);
  pointer-events: none;
  opacity: 0.5;
}
.bot-cover.opened {
  opacity: 0;
  visibility: hidden;
}

/* Countdown */
.cd-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.cd-item {
  text-align: center;
  position: relative;
}
.cd-item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -10px;
  top: 5px;
  font-size: 1.5rem;
  color: var(--bot-accent);
}
.cd-item span {
  display: block;
  font-size: 2rem;
  color: var(--bot-text);
  line-height: 1;
}
.cd-item small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bot-text-light);
  margin-top: 5px;
}

/* Forms */
.bot-form {
  text-align: left;
}
.bot-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: var(--bot-text-light);
}
.bot-form input, .bot-form select, .bot-form textarea {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--bot-accent);
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--bot-text);
  box-sizing: border-box;
  transition: 0.3s;
}
.bot-form input:focus, .bot-form select:focus, .bot-form textarea:focus {
  outline: none;
  border-bottom-color: var(--bot-text);
}

/* Gallery Grid */
.bot-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.bot-gallery-item {
  border-radius: 4px;
  overflow: hidden;
  height: 200px;
}
.bot-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.bot-gallery-item:first-child {
  grid-column: span 2;
  height: 250px;
}

/* Box Panels (Events/Bank) */
.bot-box {
  background: #fff;
  border: 1px solid rgba(163, 177, 138, 0.3);
  padding: 25px 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

/* Audio FAB */
.fab-music {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: #fff;
  color: var(--bot-text);
  border: 1px solid var(--bot-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  z-index: 1000;
  font-size: 1.2rem;
  transition: 0.3s;
}
.fab-music:hover {
  background: var(--bot-bg);
}
.fab-spin {
  animation: spin 4s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Slider Overrides */
.slider-container {
  position:relative; width:100%; height:450px; overflow:hidden;
}
.slide { position:absolute; inset:0; opacity:0; transition:opacity 1.5s ease; }
.slide.active { opacity:1; z-index:2; }
.slide img { width:100%; height:100%; object-fit:cover; }
