@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;500;600&display=swap');

/* Art Nouveau Color Palette */
:root {
  --art-nouveau-gold: #d4af37;
  --art-nouveau-emerald: #2e7d32;
  --art-nouveau-navy: #1a237e;
  --art-nouveau-cream: #fff8e1;
  --art-nouveau-sage: #689f38;
  --art-nouveau-copper: #bf6000;
  --art-nouveau-lavender: #7e57c2;
  --gradient-primary: linear-gradient(135deg, #2e7d32 0%, #1a237e 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #bf6000 100%);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Art Nouveau Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--art-nouveau-navy);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  position: relative;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* Art Nouveau Decorative Elements */
.art-nouveau-ornament {
  position: relative;
  display: inline-block;
}

.art-nouveau-ornament::before,
.art-nouveau-ornament::after {
  content: '❦';
  position: absolute;
  color: var(--art-nouveau-gold);
  font-size: 1.2em;
  top: 50%;
  transform: translateY(-50%);
}

.art-nouveau-ornament::before {
  left: -2rem;
}

.art-nouveau-ornament::after {
  right: -2rem;
}

/* Header Styles */
.navbar {
  background: var(--gradient-primary) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--art-nouveau-gold) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--art-nouveau-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(46, 125, 50, 0.8), rgba(26, 35, 126, 0.8)), url('img/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,10 Q25,0 50,10 T100,10 V20 H0 Z' fill='rgba(212,175,55,0.1)'/%3E%3C/svg%3E") repeat-x;
  background-size: 200px 40px;
  animation: wave 6s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-50px); }
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--art-nouveau-cream);
}

/* Buttons */
.btn-art-nouveau {
  background: var(--gradient-gold);
  border: none;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-art-nouveau::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-art-nouveau:hover::before {
  left: 100%;
}

.btn-art-nouveau:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  color: white;
}

.btn-outline-art-nouveau {
  border: 2px solid var(--art-nouveau-gold);
  color: var(--art-nouveau-gold);
  background: transparent;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-outline-art-nouveau:hover {
  background: var(--art-nouveau-gold);
  color: white;
  transform: translateY(-2px);
}

/* Cards */
.card-art-nouveau {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background: white;
  position: relative;
}

.card-art-nouveau::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

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

.card-art-nouveau .card-body {
  padding: 2rem;
}

.card-art-nouveau .card-title {
  color: var(--art-nouveau-navy);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: var(--art-nouveau-cream);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.service-icon:hover {
  transform: scale(1.1);
  background: var(--gradient-gold);
}

/* Contact Form */
.form-art-nouveau {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.form-art-nouveau::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-gold);
  border-radius: 20px 20px 0 0;
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--art-nouveau-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--art-nouveau-navy);
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: var(--art-nouveau-navy);
  color: white;
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--art-nouveau-gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--art-nouveau-gold);
}

.footer-ornament {
  text-align: center;
  margin: 2rem 0 1rem;
  color: var(--art-nouveau-gold);
  font-size: 2rem;
}

/* Utility Classes */
.text-art-nouveau-gold { color: var(--art-nouveau-gold) !important; }
.text-art-nouveau-navy { color: var(--art-nouveau-navy) !important; }
.bg-art-nouveau-cream { background-color: var(--art-nouveau-cream) !important; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Price Table */
.price-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.price-table:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.price-header {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  text-align: center;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.price-body {
  padding: 2rem;
}

.price-feature {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.price-feature:last-child {
  border-bottom: none;
}

.price-feature i {
  color: var(--art-nouveau-emerald);
  margin-right: 0.5rem;
}

/* Map Container */
.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Contact Info */
.contact-info {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.contact-info h4 {
  color: var(--art-nouveau-gold);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.contact-item i {
  background: var(--art-nouveau-gold);
  color: var(--art-nouveau-navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.1rem;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--art-nouveau-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .lead {
    font-size: 1.1rem;
  }

  .art-nouveau-ornament::before,
  .art-nouveau-ornament::after {
    display: none;
  }

  .form-art-nouveau {
    padding: 2rem 1.5rem;
  }
}

/* Honeypot field (hidden from users) */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* GDPR Checkbox */
.gdpr-checkbox {
  margin: 1.5rem 0;
}

.gdpr-checkbox .form-check-input {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}

.gdpr-checkbox .form-check-label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.gdpr-checkbox .form-check-label a {
  color: var(--art-nouveau-navy);
  text-decoration: underline;
}

.gdpr-checkbox .form-check-label a:hover {
  color: var(--art-nouveau-gold);
}
