/* ============================================================
   Georgia Events – Main Stylesheet (consolidated)
   All styles previously duplicated in header.php inline <style>
   have been merged here. This is the single source of truth.
   ============================================================ */

/* ----------------------------------------------------------
   CSS Custom Properties
   ---------------------------------------------------------- */
:root {
  --primary-color: #1a252f;
  --accent-color: #d4a017;
  --light-bg: #f9f5f0;
  --white: #ffffff;
  --text-color: #2c2c2c;
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-theme {
  --primary-color: #0d1318;
  --accent-color: #e5b83b;
  --light-bg: #121212;
  --white: #1e1e1e;
  --text-color: #dfdfdf;
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.6);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* ----------------------------------------------------------
   Base
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.container,
.container-fluid {
  max-width: 100%;
  overflow-x: hidden;
}

/* ----------------------------------------------------------
   Preloader
   ---------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--light-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.couple-animation {
  position: relative;
  width: clamp(200px, 50vw, 250px);
  height: 150px;
  animation: fadeIn 1s ease-in-out;
}

.couple-animation .hand-left,
.couple-animation .hand-right {
  position: absolute;
  width: 50px;
  height: 100px;
  background: var(--primary-color);
  border-radius: 25px;
  animation: handshake 2s infinite ease-in-out;
}

.couple-animation .hand-left {
  left: 50px;
  top: 50px;
  transform-origin: bottom;
}

.couple-animation .hand-right {
  right: 50px;
  top: 50px;
  transform-origin: bottom;
}

.couple-animation .text {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.5rem, 5vw, 1.8rem);
  color: var(--accent-color);
  animation: textFade 2s infinite ease-in-out;
}

@keyframes handshake {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes textFade {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ----------------------------------------------------------
   Navbar
   ---------------------------------------------------------- */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-light);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  width: 120px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: rotate(5deg) scale(1.1);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 37, 47, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: var(--primary-color) !important;
  padding: 0.3rem 0.8rem !important;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-collapse {
  max-width: 800px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   Slideshow  — FLUID height (fixes mobile breakage)
   ---------------------------------------------------------- */
.slideshow-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Show active slide */
.mySlides {
  display: none;
  position: relative;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mySlides.active {
  display: block;
  opacity: 1;
}

/* Fluid luxury height — clamp between 500px and 90vh */
.mySlides img {
  object-fit: cover;
  width: 100%;
  height: clamp(500px, 80vh, 900px);
  display: block;
}

.slide-content-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  z-index: 2;
}

.slide-caption-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: 'Great Vibes', cursive;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 25px;
}

.slide-cta-btn {
  background: var(--accent-color);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide-cta-btn:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 10px 15px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  font-size: 1.2rem;
  transition: background 0.3s ease;
  user-select: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prev:hover,
.next:hover {
  background: var(--accent-color);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* ----------------------------------------------------------
   Quote Section
   ---------------------------------------------------------- */
.quote-section {
  text-align: center;
  padding: 2.5rem 0;
  background: var(--light-bg);
}

.quote {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: var(--primary-color);
}

.quote .author {
  font-size: 1rem;
  color: var(--text-color);
}

/* ----------------------------------------------------------
   Portfolio Hero
   ---------------------------------------------------------- */
.portfolio-hero {
  background: url('../images/portfolio-bg.jpg') center/cover no-repeat;
  padding: 3.5rem 0;
  text-align: center;
  color: var(--white);
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-content h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.portfolio-content .subtitle {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.portfolio-btn {
  background: var(--accent-color);
  color: var(--white);
  padding: 0.6rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.portfolio-btn:hover {
  background: #b58914;
}

/* ----------------------------------------------------------
   Section Padding
   ---------------------------------------------------------- */
.about-andrea,
.testimonial-section,
.luxury-weddings,
.book-promo,
.client-testimonials,
.instagram-section {
  padding: 3rem 0;
}

/* ----------------------------------------------------------
   About Image
   ---------------------------------------------------------- */
.about-img-wrapper img {
  transition: transform 0.3s ease;
}

.about-img-wrapper img:hover {
  transform: scale(1.03);
}

/* ----------------------------------------------------------
   Accordion
   ---------------------------------------------------------- */
.accordion-button.custom-toggle {
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.accordion-button.custom-toggle:not(.collapsed) {
  color: var(--accent-color);
}

/* ----------------------------------------------------------
   Event Highlight
   ---------------------------------------------------------- */
.event-highlight-section img {
  transition: opacity 0.3s ease;
}

.event-highlight-section img:hover {
  opacity: 0.9;
}

/* ----------------------------------------------------------
   Masonry Collage
   ---------------------------------------------------------- */
.masonry-columns {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-columns img {
  break-inside: avoid;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  width: 100%;
}

.masonry-columns img:hover {
  transform: scale(1.05);
}

/* ----------------------------------------------------------
   Signature Offerings
   ---------------------------------------------------------- */
.signature-offerings img {
  height: 250px;
  object-fit: cover;
}

/* ----------------------------------------------------------
   Cookie Banner
   ---------------------------------------------------------- */
#cookie-banner {
  background: var(--white);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
}

/* ----------------------------------------------------------
   Theme Control
   ---------------------------------------------------------- */
#theme-control {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

#theme-control:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* ----------------------------------------------------------
   Social Links
   ---------------------------------------------------------- */
.social-links a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-color);
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
}

footer a {
  color: var(--accent-color);
  transition: color 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer a:hover {
  color: var(--white);
}

/* ----------------------------------------------------------
   No-JS fallback
   ---------------------------------------------------------- */
.no-js .mySlides:first-child {
  display: block;
  opacity: 1;
}

/* ----------------------------------------------------------
   Responsive Breakpoints
   ---------------------------------------------------------- */
@media (max-width: 992px) {
  .masonry-columns {
    column-count: 2;
  }

  .signature-offerings img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .portfolio-content h1 {
    font-size: 2.5rem;
  }

  .portfolio-content .subtitle {
    font-size: 1rem;
  }

  .quote {
    font-size: 1.5rem;
  }

  .about-andrea h2,
  .about-andrea h3,
  .luxury-weddings h2,
  .client-testimonials h4 {
    font-size: 1.8rem;
  }

  .about-img-wrapper img {
    max-width: 100%;
  }

  .signature-offerings img {
    height: 180px;
  }

  .masonry-columns {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .masonry-columns {
    column-count: 1;
  }

  .signature-offerings img {
    height: 150px;
  }

  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-link {
    text-align: center;
    padding: 0.5rem 1rem !important;
    font-size: 1rem;
  }

  .navbar-brand img {
    width: 100px;
  }

  #cookie-banner p {
    font-size: 0.85rem;
  }

  #cookie-banner .btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  #cookie-banner .d-flex {
    flex-direction: column;
    gap: 0.5rem;
  }

  .couple-animation .hand-left,
  .couple-animation .hand-right {
    width: 40px;
    height: 80px;
  }

  .couple-animation .hand-left {
    left: 40px;
  }

  .couple-animation .hand-right {
    right: 40px;
  }
}

@media (max-width: 400px) {
  .portfolio-content h1 {
    font-size: 1.8rem;
  }

  .portfolio-content .subtitle {
    font-size: 0.85rem;
  }

  .quote {
    font-size: 1.3rem;
  }

  .quote .author {
    font-size: 0.9rem;
  }

  .navbar-brand img {
    width: 80px;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem !important;
  }

  .signature-offerings img {
    height: 120px;
  }

  .masonry-columns {
    column-count: 1;
    column-gap: 0;
  }

  .masonry-columns img {
    margin-bottom: 0.5rem;
  }
}

/* ============================================================
   AWARD-WINNING REDESIGN - PREMIUM AESTHETICS
   ============================================================ */

/* 1. Global Typography & Spacing Refinements */
body {
  line-height: 1.8;
  font-size: 1.05rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.05em;
}

.text-uppercase {
  letter-spacing: 0.15em;
}

.py-premium {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .py-premium {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* 2. Hero Section - Ken Burns Effect */
@keyframes kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.mySlides.active img {
  animation: kenburns 15s ease-out forwards;
}

.slide-content-overlay {
  background: rgba(0, 0, 0, 0.2);
  /* Subtle darkening for luxury feel */
  padding: 40px;
  border-radius: 2px;
  backdrop-filter: blur(2px);
  /* Glassmorphism hint */
}

/* 3. Quote Section - Asymmetrical Dark Block */
.quote-section {
  background: var(--primary-color);
  color: var(--accent-color);
  padding: 100px 20px;
  position: relative;
  z-index: 10;
  margin-top: -50px;
  /* Overlap the hero slightly */
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

.quote-logos .quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-family: 'Cinzel', serif;
  line-height: 1.6;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  color: var(--accent-color);
  /* OVERRIDE INVISIBLE TEXT */
}

.quote-logos .author {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 30px;
  color: var(--white);
}

/* 4. About Section - Overlapping Image/Text */
.about-overlap-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.about-text-box {
  background: var(--white);
  padding: 60px;
  box-shadow: var(--shadow-hover);
  position: relative;
  z-index: 2;
  margin-right: -100px;
  /* Pull text over image */
}

@media (max-width: 991.98px) {
  .about-text-box {
    margin-right: 0;
    margin-bottom: -50px;
  }
}

/* 5. Signature Offerings - Premium Portrait Cards */
.premium-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 600px;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: box-shadow 0.4s ease;
}

.premium-card:hover {
  box-shadow: var(--shadow-hover);
}

.premium-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-card:hover img {
  transform: scale(1.05);
  /* Subtle zoom */
}

.premium-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--white);
  transition: opacity 0.4s ease;
}

.premium-card h5 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.premium-card a.btn {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--white);
}

.premium-card a.btn:hover {
  background: var(--accent-color);
  color: var(--white);
}

.premium-card:hover h5,
.premium-card:hover a.btn {
  opacity: 1;
  transform: translateY(0);
}

/* 6. Minimalist Testimonials */
.testimonial-minimal {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-family: 'Cinzel', serif;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   FAIRY CONSULTATION POPUP MINIMALIST DESIGN
   ============================================================ */
.consultation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.consultation-popup.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.consultation-popup .popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.consultation-popup .popup-content {
  position: relative;
  width: 900px;
  max-width: 90%;
  height: 500px;
  max-height: 90vh;
  background: var(--primary-color);
  border-radius: 4px;
  overflow: hidden;
  z-index: 10001;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.consultation-popup.hidden .popup-content {
  transform: translateY(30px);
}

.consultation-popup .popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.consultation-popup .popup-close:hover {
  opacity: 1;
}

.consultation-popup .popup-image-container {
  width: 50%;
  height: 100%;
  position: relative;
}

.consultation-popup .popup-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultation-popup .popup-text-container {
  width: 50%;
  height: 100%;
  padding: 40px;
}

@media (max-width: 768px) {
  .consultation-popup .popup-content {
    flex-direction: column;
    height: auto;
    max-height: 85vh;
  }

  .consultation-popup .popup-image-container {
    width: 100%;
    height: 250px;
  }

  .consultation-popup .popup-text-container {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }
}