:root {
  --main-bg: #fff;
  --main-text: #222;
  --gold: #FFD700;
  --card-bg: #f8f9fa;
  --secondary-bg: #e9ecef;
  --footer-bg: #222;
}

body {
  background: linear-gradient(132deg, #5d521b 0%, #000000eb 100%) !important;
  color: var(--main-text) !important;
}

body.light-theme {
  background: linear-gradient(132deg, #5d521b 0%, #000000eb 100%) !important;
  --main-bg: #fff;
  --main-text: #222;
  --gold: #FFD700;
  --card-bg: #f8f9fa;
  --secondary-bg: #e9ecef;
  --footer-bg: #222;
}

body.dark-theme {
  background: linear-gradient(135deg, #000 0%, #FFD700 100%) !important;
  --main-bg: #111;
  --main-text: #fff;
  --gold: #FFD700;
  --card-bg: #222;
  --secondary-bg: #222;
  --footer-bg: #111;
}

.gold-text {
  color: var(--gold) !important;
}

/* Hero Section with Video Background */
.hero-section {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: inherit;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.position-relative.z-index-1 {
  position: relative;
  z-index: 3;
}

.hero-section h1 {
  font-size: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-section .btn-warning {
  padding: 0.75rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-section .btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Decor Categories Styles */
#decor-categories {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

#decor-categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  gap: 3rem;
}

.decor-category {
  width: 100%;
  max-width: 100%;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.decor-category:first-child {
  border-top: none;
}

.decor-category h3 {
  font-size: 2.5rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100%;
}

/* Decor Header Line */
.decor-header-line {
  width: 100px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}

.decor-header-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 1px;
  background: rgba(255, 215, 0, 0.2);
  transform: translate(-50%, -50%);
}

.decor-category h3::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  margin: 1rem auto;
  background: var(--gold);
}

/* Center gallery items */
.gallery-item {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Center rows and columns */
.decor-category .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
}

.decor-category .col-md-6,
.decor-category .col-lg-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 400px;
  min-width: 400px;
  max-width: 500px;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 10px;
}

.video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--main-bg);
  width: 100%;
  aspect-ratio: 16/9;
  transform: scale(1);
  transform-origin: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: scale(1.2);
  margin: -20px 0;
}

.gallery-item video,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover video,
.gallery-item:hover img {
  transform: scale(1.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #decor-categories {
    padding: 2rem 1rem;
  }
  
  .decor-category {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  
  .decor-category h3 {
    font-size: 2rem;
  }
  
  .gallery-item {
    max-width: 100%;
    margin: 1rem 0;
  }
  
  .decor-category .row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .decor-category .col-md-6,
  .decor-category .col-lg-4 {
    min-width: 100%;
  }
}

/* Decor Gallery Styles */
#decor-categories {
  background: linear-gradient(132deg, #5d521b 0%, #000000eb 100%) !important;
  position: relative;
  padding: 2rem 0;
}

.decor-category {
  margin-bottom: 3rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.decor-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.decor-category h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* Large screens - 3 columns */
@media (min-width: 1200px) {
  .gallery-item {
    height: 350px;
  }
  
  .decor-category h3 {
    font-size: 2rem;
  }
}

/* Medium screens - 2 columns */
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-item {
    height: 400px;
  }
  
  .decor-category h3 {
    font-size: 2.2rem;
  }
  
  .decor-category {
    margin-bottom: 4rem;
  }
}

/* Small screens - 1 column */
@media (max-width: 767px) {
  .gallery-item {
    height: 450px;
  }
  
  .decor-category h3 {
    font-size: 2.4rem;
  }
  
  .decor-category {
    margin-bottom: 5rem;
  }

  /* WhatsApp Button */
  .whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
  }

  .theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }

  .theme-toggle-btn i {
    font-size: 50px;
    color: #25D366;
    transition: all 0.3s ease;
  }

  /* Floating animation */
  .theme-toggle-btn {
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }

  @media (max-width: 768px) {
    .theme-toggle-btn {
      width: 50px;
      height: 50px;
    }
    
    .theme-toggle-btn i {
      font-size: 40px;
    }
  }

  /* WhatsApp Button */
  .whatsapp-button {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .whatsapp-button i {
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }

  .whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }

  /* Floating animation */
  .whatsapp-button {
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }

  @media (max-width: 768px) {
    .whatsapp-button {
      width: 50px;
      height: 50px;
    }
    
    .whatsapp-button i {
      font-size: 20px;
    }
  }
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay .material-icons {
  font-size: 4rem;
  color: var(--gold);
}

/* Avatar Styles */
.avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--main-bg);
  width: 120px;
  height: 120px;
  padding: 10px;
  font-size: 96px;
}

.avatar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: inherit;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--main-bg);
}

#decor-categories {
  background: linear-gradient(132deg, #5d521b 0%, #000000eb 100%) !important;
  position: relative;
  padding: 3rem 0;
}

body.dark-theme #decor-categories {
  background: linear-gradient(135deg, #000 0%, #FFD700 100%) !important;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #111;
  min-height: 300px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--gold);
  cursor: pointer;
}

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

.gallery-overlay .material-icons {
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay .material-icons {
  transform: scale(1.2);
}

/* CTA Card in Gallery */
.border-gold {
  border-color: var(--gold) !important;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.border-gold:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: #ffed4a !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  #decor-gallery h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.card {
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: var(--card-bg) !important;
  color: var(--main-text) !important;
}

.card .gold-text {
  color: var(--gold) !important;
}

.stat-card {
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: var(--card-bg) !important;
  color: var(--main-text) !important;
}

.plus-icon {
  display: inline-block;
  font-size: 2rem;
  color: var(--gold);
  margin-left: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.btn-warning {
  background-color: var(--gold);
  color: var(--main-text);
  border: none;
}

.btn-warning:hover, .btn-warning:focus {
  background-color: #e6be00;
  color: var(--main-text);
}

footer {
  background: var(--footer-bg);
}

footer h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

footer h3 {
  font-size: 1.2rem;
}

footer .material-icons {
  font-size: 2rem;
}

footer .col-md-6 {
  padding: 0.5rem;
}

#contactForm {
  max-width: 800px;
  margin: 0 auto;
}

#contactForm .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

#contactForm .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

#contactForm .form-label {
  color: white;
  opacity: 0.8;
}

#contactForm .btn-warning {
  background-color: var(--gold);
  border-color: var(--gold);
  padding: 0.75rem 2rem;
}

#contactForm .btn-warning:hover {
  background-color: #ffed4a;
  border-color: #ffed4a;
}

#map {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Map Styles */
.map-container {
  height: 100%;
  width: 100%;
  position: relative;
}

#map-canvas {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.map-container .card {
  height: 400px;
}

.map-container .card-body {
  height: 100%;
}

.was-validated .form-control:invalid {
  border-color: #ff0000;
  background-color: rgba(255, 0, 0, 0.1);
}

.was-validated .form-control:valid {
  border-color: var(--gold);
  background-color: rgba(255, 215, 0, 0.1);
}

/* Theme Toggle Styles */
.theme-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--gold);
  color: var(--main-text);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.theme-toggle-btn:active {
  transform: scale(0.95);
}

.social-section {
  border-top: 2px solid rgba(255, 215, 0, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.social-links {
  padding: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  margin: 0 0.25rem;
}

.social-link:hover {
  transform: scale(1.18) !important;
  background: rgba(255,215,0,0.1) !important;
  color: inherit !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18) !important;
}

.facebook-color { color: #1877f2 !important; }
.instagram-color { color: #e1306c !important; }
.tiktok-color { color: #ffffff !important; }
.youtube-color { color: #ff0000 !important; }

.social-link:hover::before {
  background: transparent !important;
  width: 0 !important;
  height: 0 !important;
}


.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.social-link:hover::before {
  width: 200%;
  height: 200%;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link .material-icons {
  font-size: 1.5rem;
  transition: color 0.2s ease;
}

.social-link:hover .material-icons {
  color: #000;
}

/* Ensure no borders are applied to social icons */
.social-icon {
  border: none; /* Remove any border */
  outline: none; /* Remove outline */
}

.material-icons {
  border: none !important; /* Remove border from material icons */
  outline: none !important; /* Remove outline from material icons */
}
/* Ensure no borders or outlines are applied to social icons */
#social a {
  text-decoration: none !important;
  color: white !important;
}

#social a:hover {
  text-decoration: none !important;
  color: white !important;
}

.social-icon {
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  color: white !important;
}

.social-icon:hover {
  text-decoration: none !important;
  color: white !important;
}

.social-icon span {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 1rem;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  color: white !important;
}

.social-icon span:hover {
  transform: scale(1.2);
  text-decoration: none !important;
  color: white !important;
}

/* Fix YouTube icon visibility */
.social-icon .material-icons {
  font-size: 2.5rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
}

/* Ensure all icons are properly styled */
.social-icon .material-icons {
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  font-size: 2.5rem !important;
  color: white !important;
}

/* Contact Section Styles */
.contact-us-section {
  background-color: #222;
  color: #f5b100;
}

.contact-info {
  margin-top: 30px;
}

.contact-item {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item .material-icons {
  margin-right: 10px;
  font-size: 1.6rem;
}

.map-container {
  height: 350px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

#map-canvas {
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icon {
  display: inline-block;
  padding: 10px;
  background-color: #3b5998;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #f5b100;
}

.social-icon .material-icons {
  font-size: 2rem;
  color: white;
}

.map-container iframe {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .contact-info {
    text-align: center;
  }

  .map-container iframe {
    height: 300px;
  }

  .social-links {
    justify-content: center;
  }
}

/* Statistics Section Styles */
.stat-card {
  background-color: #333;
  color: #f5b100;
  border-radius: 8px;
  text-align: center;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .material-icons {
  font-size: 50px;
  color: #f5b100;
}

.stat-card h3 {
  font-size: 3rem;
  margin-top: 15px;
  font-weight: bold;
}

.stat-card p {
  font-size: 1.1rem;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design for Statistics */
@media (max-width: 768px) {
  .stat-card {
    padding: 20px;
  }

  .stat-card h3 {
    font-size: 2rem;
  }

  .stat-card p {
    font-size: 1rem;
  }
}

/* Ensuring proper left alignment for the content */
.contact-info-card {
  text-align: left; /* Aligns all content inside the card to the left */
}

.contact-content {
  padding-left: 0;
}

.contact-item {
  font-size: 1.1rem; /* Ensures readability of the contact items */
  margin-bottom: 10px;
}

.material-icons {
  vertical-align: middle; /* Aligns the icon properly with the text */
  margin-right: 10px; /* Adds space between the icon and the text */
  font-size: 1.5rem; /* Makes the icons the right size */
}

/* Social Icons Alignment and Spacing */
.social-links {
  display: flex; /* Ensures icons are displayed in a row */
  justify-content: flex-start; /* Left-aligns the icons */
  gap: 20px; /* Adds space between each icon */
  margin-top: 10px;
}

/* Individual social media icon styling */
.social-link {
  text-decoration: none; /* Removes any default link styling */
}

.social-link .material-icons {
  font-size: 2.5rem; /* Icon size */
  color: #FFD700; /* Gold color for icons */
  transition: transform 0.3s ease-in-out;
}

/* Hover effect for social media icons */
.social-link:hover .material-icons {
  transform: scale(1.1); /* Slight zoom effect on hover */
}
