/* ===================================
   KINGS & QUEENS - MODERN LUXURY STYLES
   Modern, Minimalist, Black & White Theme
=================================== */

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

:root {
  --color-primary: #000000;
  --color-secondary: #ffffff;
  --color-accent: #c9a961;
  --color-gray: #f5f5f5;
  --color-gray-dark: #333333;
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-gray-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Accessibility: Visually hidden but screen reader accessible */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================
   NAVIGATION
=================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--color-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--color-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.umzug-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.umzug-btn:hover {
  background: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
}

.umzug-btn i {
  font-size: 1.1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===================================
   HERO SECTION
=================================== */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/kings_and_queens_bendestorf_background_brush.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-secondary);
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
}

.hero-ribbon {
  position: absolute;
  opacity: 0.15;
  z-index: 3;
  pointer-events: none;
}

.hero-ribbon.top-left {
  top: 10%;
  left: 5%;
  width: 100px;
  transform: rotate(-15deg);
}

.hero-ribbon.top-right {
  top: 10%;
  right: 5%;
  width: 100px;
  transform: rotate(90deg);
}

.hero-ribbon.bottom-left {
  bottom: 15%;
  left: 5%;
  width: 80px;
  transform: rotate(-90deg);
}

.hero-ribbon.bottom-right {
  bottom: 15%;
  right: 5%;
  width: 80px;
  transform: rotate(180deg);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: var(--color-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--color-accent);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--color-accent);
}

.hero-cta i {
  margin-right: 0.5rem;
}

.hero-cta:hover {
  background: transparent;
  color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.hero-cta-mobile {
  display: none;
}

.hero-cta-desktop {
  display: inline-block;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: var(--color-secondary);
  font-size: 2rem;
  opacity: 0.7;
  transition: var(--transition);
}

.scroll-indicator a:hover {
  opacity: 1;
  color: var(--color-accent);
}

/* ===================================
   SECTIONS
=================================== */

section {
  padding: 6rem 2rem;
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.section-light {
  background: var(--color-secondary);
}

.section-gray {
  background: var(--color-gray);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-dark .section-subtitle {
  color: var(--color-accent);
}

/* ===================================
   ABOUT SECTION
=================================== */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--color-primary);
  font-weight: 600;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 20px 20px 0 var(--color-accent);
}

.about-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.about-images-grid img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: var(--transition);
  filter: grayscale(20%);
}

.about-images-grid img:hover {
  transform: scale(1.02);
  filter: grayscale(0%);
}

/* ===================================
   SERVICES SECTION
=================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-secondary);
  padding: 3rem;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-primary);
}

.service-table {
  width: 100%;
}

.service-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-table tr:last-child {
  border-bottom: none;
}

.service-table td {
  padding: 1rem 0;
  font-size: 0.95rem;
}

.service-table td:first-child {
  font-weight: 500;
  color: var(--color-gray-dark);
}

.service-table td:nth-child(2) {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.service-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--color-accent);
}

.service-category-header {
  padding: 2rem 0;
  text-align: center;
  font-weight: 600;
  color: var(--color-accent);
}

/* ===================================
   TEAM SECTION
=================================== */

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.team-grid-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  position: relative;
  overflow: hidden;
  background: var(--color-secondary);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .team-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background: var(--color-secondary);
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.team-member-lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  background: var(--color-secondary);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-lead .team-image {
  height: 500px;
}

.team-member-lead .team-info {
  text-align: left;
  padding: 0;
}

.team-member-lead .team-info h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.team-member-lead .team-info p {
  font-size: 1.1rem;
  color: var(--color-gray-dark);
}

/* ===================================
   PRODUCTS SECTION
=================================== */

.products-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.products-logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.products-logos img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
  padding: 1rem;
}

.products-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.products-slideshow {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.products-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
  padding: 2rem;
}

.products-slideshow img.active {
  opacity: 1;
}

/* ===================================
   CONTACT SECTION
=================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--color-secondary);
  padding: 3rem;
  border-left: 4px solid var(--color-accent);
  color: var(--color-gray-dark);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 0.5rem;
  color: var(--color-gray-dark);
}

.contact-info i {
  color: var(--color-accent);
  margin-right: 1rem;
  width: 20px;
}

.contact-info a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--color-accent);
}

.contact-map {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 2rem;
  filter: grayscale(100%);
  transition: var(--transition);
}

.contact-map:hover {
  filter: grayscale(0%);
}

.hours-table {
  width: 100%;
}

.hours-table td {
  padding: 0.8rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-gray-dark);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-accent);
}

.hours-note {
  margin-top: 2rem;
  font-style: italic;
  color: #999;
  text-align: center;
}

/* ===================================
   FOOTER
=================================== */

footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: var(--color-secondary);
  font-size: 2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--color-accent);
  transform: translateY(-5px);
}

.footer-links {
  margin-top: 2rem;
}

.footer-links a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

/* ===================================
   ANIMATIONS
=================================== */

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

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid-members {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member-lead {
    grid-template-columns: 1fr;
  }

  .products-container {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    width: 100%;
    padding: 2rem;
    transition: var(--transition);
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .umzug-btn-text {
    display: none;
  }

  .umzug-btn {
    padding: 0.6rem;
    min-width: 40px;
    justify-content: center;
  }

  .hero-cta-desktop {
    display: none;
  }

  .hero-cta-mobile {
    display: inline-block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-table td {
    padding: 0.7rem 0;
    font-size: 0.85rem;
    vertical-align: top;
  }

  .service-table td:first-child {
    width: 50%;
    padding-right: 0.5rem;
  }

  .service-table td:nth-child(2) {
    width: 20%;
    font-size: 0.8rem;
  }

  .service-table td:last-child {
    width: 30%;
    white-space: nowrap;
    padding-left: 0.5rem;
  }

  .team-member-lead {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .team-member-lead .team-image {
    height: 300px;
  }

  .team-member-lead .team-info h3 {
    font-size: 1.8rem;
  }

  .team-member-lead .team-info p {
    font-size: 1rem;
  }

  .team-grid-members {
    grid-template-columns: 1fr;
  }

  .about-images-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   UMZUG MODAL / POPUP
=================================== */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  max-width: 800px;
  max-height: 85vh;
  width: 100%;
  background: var(--color-secondary);
  padding: 2rem;
  border: 3px solid var(--color-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.4s ease;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border: 3px solid var(--color-secondary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-close:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: rotate(90deg) scale(1.1);
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    padding: 1rem;
    max-width: 95%;
    max-height: 90vh;
  }

  .modal-image {
    max-height: 80vh;
  }

  .modal-close {
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ===================================
   SCROLL ANIMATIONS - CUSTOM ENHANCEMENTS
=================================== */

/* Floating animation for scroll indicator */
.scroll-indicator {
  animation: float 2.5s ease-in-out infinite;
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}
