/* ============================================
   CABINET FODDA - CUSTOM STYLES
   ============================================ */

/* Font Face Declarations */

/* Font Families */
body {
  font-family: "Inter", sans-serif;
  background-color: #f8f7f4;
  color: #333;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

/* Background Utilities */
.hero-bg {
  background-image: linear-gradient(
      rgba(10, 38, 25, 0.7),
      rgba(10, 38, 25, 0.9)
    ),
    url(./assets/hero.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Navigation Styles */
.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #c79855; /* Gold hover */
}

/* Button Styles */
.cta-button {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #061a12; /* Darker Green hover */
  transform: translateY(-2px);
}

/* Expertise Tab Styles */
.expertise-tab {
  border-color: #c79855; /* Gold active border */
  color: #c79855; /* Gold active text */
  background-color: #fff;
}
.expertise-tab.active {
  color: #fff; /* Gold active text */
  background-color: #c79855;
}

/* Team Card Styles */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Modal Styles */
.modal-overlay {
  transition: opacity 0.3s ease;
}

.modal-content {
  transition: transform 0.3s ease;
}

/* Hero Section Text Styling */
.hero-bg h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-bg .hero-subtitle {
  color: #c79855;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-bg .hero-description {
  color: #f8f7f4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Action Buttons */
.hero-contact-btn,
.hero-consultation-btn {
  min-width: 200px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 152, 85, 0.3);
}

.hero-consultation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 38, 25, 0.2);
  border-color: #c79855;
}

/* Responsive adjustments for hero buttons */
@media (max-width: 640px) {
  .hero-contact-btn,
  .hero-consultation-btn {
    min-width: 250px;
    justify-content: center;
  }
}

/* ============================================
   CONTACT FORM ENHANCEMENTS
   ============================================ */

/* Custom select dropdown styling */
.contact-form select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23c79855' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* Form field focus animations */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(199, 152, 85, 0.15);
}

/* Form labels transition */
.contact-form label {
  transition: all 0.3s ease;
}

/* Privacy notice subtle animation */
.privacy-notice {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submit button enhanced hover effect */
.contact-form button[type="submit"]:hover {
  box-shadow: 0 15px 35px rgba(199, 152, 85, 0.4);
}

/* Form field validation states */
.contact-form input:valid,
.contact-form textarea:valid,
.contact-form select:valid {
  border-color: #10b981;
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown),
.contact-form select:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

/* Smooth transitions for all form elements */
.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
