@charset "UTF-8";
/**
 * Barth MediaDesign - Hochzeitsfotograf Sinsheim
 *
 * Custom CSS for Armin Barth Photography
 * Professional wedding photography website with elegant design
 *
 * Features:
 * - Hero section with image carousel
 * - Masonry gallery
 * - Service cards
 * - Parallax CTA sections
 * - Testimonials carousel
 * - Contact information cards
 * - Instagram grid
 * - Responsive mobile-first design
 * - Smooth animations and transitions
 *
 * Created for TYPO3 Bootstrap Package integration
 */
/* ============ GOOGLE FONTS IMPORT ============ */
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;500&display=swap");
/* ============ CSS VARIABLES ============ */
:root {
  --ab-primary: #b08d6e;
  --ab-primary-light: #d4b896;
  --ab-primary-dark: #8a6d52;
  --ab-dark: #1a1a1a;
  --ab-darker: #0d0d0d;
  --ab-light: #f8f5f1;
  --ab-cream: #faf7f4;
  --ab-text: #3a3a3a;
  --ab-text-light: #6a6a6a;
  --ab-white: #ffffff;
  --ab-gold: #c9a96e;
  --ab-font-heading: 'Jost', sans-serif;
  --ab-font-body: 'Montserrat', sans-serif;
  --ab-font-script: 'Great Vibes', cursive;
  --ab-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); }

/* ============ GLOBAL STYLES ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden; }

body {
  font-family: var(--ab-font-body);
  color: var(--ab-text);
  background: var(--ab-white);
  overflow-x: hidden; }

::selection {
  background: var(--ab-primary-light);
  color: var(--ab-white); }

h1, h2, h3, h4, h5 {
  font-family: var(--ab-font-heading);
  font-weight: 300;
  letter-spacing: 1px; }

p {
  font-family: var(--ab-font-body);
  font-weight: 300;
  line-height: 1.85;
  font-size: 0.95rem;
  color: var(--ab-text-light); }

a {
  color: var(--ab-primary);
  text-decoration: none;
  transition: var(--ab-transition); }

a:hover {
  color: var(--ab-primary-dark); }

img {
  max-width: 100%;
  height: auto; }

.section-padding {
  padding: 120px 0; }

/* Elegant divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px; }

.section-divider::before,
.section-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--ab-primary); }

.section-divider i {
  color: var(--ab-primary);
  font-size: 0.7rem; }

.section-subtitle {
  font-family: var(--ab-font-script);
  font-size: 1.8rem;
  color: var(--ab-primary);
  margin-bottom: 5px;
  display: block; }

.section-title {
  font-family: var(--ab-font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ab-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px; }

.section-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9; }

/* ============ BUTTONS ============ */
.btn-elegant {
  display: inline-block;
  padding: 16px 45px;
  border: 1px solid var(--ab-primary);
  color: var(--ab-primary);
  font-family: var(--ab-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  transition: var(--ab-transition);
  position: relative;
  overflow: hidden;
  z-index: 1; }

.btn-elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--ab-primary);
  transition: var(--ab-transition);
  z-index: -1; }

.btn-elegant:hover {
  color: var(--ab-white);
  border-color: var(--ab-primary); }

.btn-elegant:hover::before {
  left: 0; }

.btn-elegant-filled {
  display: inline-block;
  padding: 16px 45px;
  border: 1px solid var(--ab-primary);
  color: var(--ab-white);
  background: var(--ab-primary);
  font-family: var(--ab-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--ab-transition); }

.btn-elegant-filled:hover {
  background: var(--ab-primary-dark);
  border-color: var(--ab-primary-dark);
  color: var(--ab-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(176, 141, 110, 0.3); }

.btn-elegant-white {
  display: inline-block;
  padding: 16px 45px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--ab-white);
  font-family: var(--ab-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: transparent;
  transition: var(--ab-transition); }

.btn-elegant-white:hover {
  background: var(--ab-white);
  color: var(--ab-dark);
  border-color: var(--ab-white); }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ab-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease; }

#preloader.hidden {
  opacity: 0;
  visibility: hidden; }

#preloader img {
  width: 200px;
  animation: preloaderPulse 2s ease-in-out infinite; }

#preloader .loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  overflow: hidden; }

#preloader .loader-bar::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background: var(--ab-primary);
  animation: loading 2s ease forwards; }

@keyframes preloaderPulse {
  0%, 100% {
    opacity: 0.6; }
  50% {
    opacity: 1; } }
@keyframes loading {
  to {
    width: 100%; } }
/* ============ NAVIGATION (TYPO3 Bootstrap Package Overrides) ============ */
/* Standard-Zustand: Dunkler Text auf weißem/transparentem Hintergrund */
.navbar-mainnavigation {
  transition: all 0.4s ease !important;
  z-index: 9999 !important;
  padding: 15px 0 !important; }

.navbar-mainnavigation .navbar-brand img {
  height: 45px !important;
  transition: all 0.4s ease; }

/* Nav-Links: Dunkle Farbe (Standard) */
.navbar-mainnavigation .nav-link {
  color: var(--ab-dark) !important;
  font-family: var(--ab-font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 8px 14px !important;
  transition: all 0.3s ease !important; }

.navbar-mainnavigation .nav-link:hover {
  color: var(--ab-primary) !important; }

/* Scrolled-Zustand: Dunkler Hintergrund, weiße Links */
.navbar-mainnavigation.nav-scrolled {
  background: rgba(26, 26, 26, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  padding: 8px 0 !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15) !important; }

.navbar-mainnavigation.nav-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.85) !important; }

.navbar-mainnavigation.nav-scrolled .nav-link:hover {
  color: #fff !important; }

.navbar-mainnavigation.nav-scrolled .navbar-brand img {
  height: 35px !important;
  filter: brightness(0) invert(1); }

/* Anfragen-Button in Navigation (letzter Link hervorheben) */
.navbar-mainnavigation .nav-item:last-child .nav-link {
  border: 1px solid var(--ab-primary) !important;
  color: var(--ab-primary) !important;
  padding: 8px 22px !important;
  margin-left: 10px !important;
  transition: all 0.3s ease !important; }

.navbar-mainnavigation .nav-item:last-child .nav-link:hover {
  background: var(--ab-primary) !important;
  color: #fff !important; }

.navbar-mainnavigation.nav-scrolled .nav-item:last-child .nav-link {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important; }

.navbar-mainnavigation.nav-scrolled .nav-item:last-child .nav-link:hover {
  background: var(--ab-primary) !important;
  border-color: var(--ab-primary) !important; }

/* Toggler (Mobile) */
.navbar-mainnavigation .navbar-toggler {
  border: none !important; }

.navbar-mainnavigation .navbar-toggler:focus {
  box-shadow: none !important; }

/* Mobile Menu */
@media (max-width: 991.98px) {
  .navbar-mainnavigation .navbar-collapse {
    background: rgba(26, 26, 26, 0.98) !important;
    padding: 20px !important;
    margin-top: 10px !important; }

  .navbar-mainnavigation .navbar-collapse .nav-link {
    color: rgba(255, 255, 255, 0.85) !important; }

  .navbar-mainnavigation .nav-item:last-child .nav-link {
    margin-left: 0 !important;
    margin-top: 10px !important;
    text-align: center !important; } }
/* ============ HERO ============ */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden; }

/* Image area takes ~65% */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%; }

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.8s ease, transform 10s ease;
  transform: scale(1.06); }

.hero-slide.active {
  opacity: 1;
  transform: scale(1); }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(26, 26, 26, 0.7) 90%, #1a1a1a 100%);
  z-index: 2; }

/* Content panel: solid dark bottom 35% */
.hero-content-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: var(--ab-dark);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center; }

.hero-content {
  text-align: center;
  color: var(--ab-white);
  padding: 30px 20px;
  max-width: 900px; }

.hero-content .hero-script {
  font-family: var(--ab-font-script);
  font-size: 1.8rem;
  color: var(--ab-primary-light);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s 0.5s forwards; }

.hero-content h1 {
  font-family: var(--ab-font-heading);
  font-size: 3.2rem;
  font-weight: 200;
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s 0.8s forwards; }

.hero-content .hero-lead {
  font-family: var(--ab-font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 650px;
  margin: 0 auto 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s 1.1s forwards; }

.hero-content .hero-lead strong {
  color: var(--ab-primary-light);
  font-weight: 400; }

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s 1.4s forwards;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0); } }
.hero-scroll {
  position: absolute;
  bottom: calc(35% + 15px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: heroScrollBounce 2s ease-in-out infinite; }

.hero-scroll i {
  display: block;
  font-size: 1.2rem;
  margin-top: 8px; }

@keyframes heroScrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0); }
  50% {
    transform: translateX(-50%) translateY(8px); } }
/* Slide indicators */
.hero-indicators {
  position: absolute;
  right: 40px;
  top: 32%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 15px; }

.hero-indicators span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--ab-transition); }

.hero-indicators span.active {
  background: var(--ab-primary);
  border-color: var(--ab-primary);
  transform: scale(1.3); }

/* ============ INTRO / WELCOME ============ */
.intro-section {
  background: var(--ab-cream);
  position: relative; }

.intro-section .intro-image-col {
  position: relative; }

.intro-section .intro-image-main {
  width: 100%;
  height: 600px;
  object-fit: cover;
  box-shadow: 20px 20px 0 var(--ab-primary-light); }

.intro-section .intro-image-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 320px;
  object-fit: cover;
  border: 8px solid var(--ab-white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }

.intro-section .intro-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px; }

.intro-experience {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 20px 30px;
  background: var(--ab-white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06); }

.intro-experience .number {
  font-family: var(--ab-font-heading);
  font-size: 3.2rem;
  font-weight: 200;
  color: var(--ab-primary);
  line-height: 1;
  letter-spacing: -1px; }

.intro-experience .label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ab-text-light);
  line-height: 1.5; }

/* ============ PORTFOLIO / GALLERY ============ */
.gallery-section {
  background: var(--ab-dark);
  color: var(--ab-white);
  overflow: hidden; }

.gallery-section .section-title {
  color: var(--ab-white); }

.gallery-section p {
  color: rgba(255, 255, 255, 0.6); }

.gallery-masonry {
  columns: 4;
  column-gap: 10px;
  padding: 0 10px; }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer; }

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); }

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease; }

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

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

.gallery-item .gallery-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: var(--ab-white);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--ab-transition); }

.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: translateY(0); }

/* ============ SERVICES ============ */
.services-section {
  background: var(--ab-white); }

.service-card {
  text-align: center;
  padding: 50px 35px;
  position: relative;
  transition: var(--ab-transition);
  border: 1px solid transparent; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--ab-primary);
  transition: var(--ab-transition);
  transform: translateX(-50%); }

.service-card:hover {
  border-color: rgba(176, 141, 110, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06); }

.service-card:hover::before {
  width: 60px; }

.service-card .service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border: 1px solid var(--ab-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ab-primary);
  transition: var(--ab-transition); }

.service-card:hover .service-icon {
  background: var(--ab-primary);
  color: var(--ab-white);
  border-color: var(--ab-primary); }

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400; }

.service-card p {
  font-size: 0.88rem; }

/* ============ PARALLAX CTA ============ */
.parallax-cta {
  height: 70vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center; }

.parallax-cta .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.6); }

.parallax-cta .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ab-white); }

.parallax-cta .content h2 {
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px; }

.parallax-cta .content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 40px; }

/* ============ ABOUT ============ */
.about-section {
  background: var(--ab-cream); }

.about-image-wrapper {
  position: relative;
  display: inline-block; }

.about-image-wrapper img {
  width: 100%;
  max-width: 450px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12); }

.about-image-wrapper .frame-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--ab-primary);
  z-index: -1; }

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase; }

.about-text .signature {
  font-family: var(--ab-font-script);
  font-size: 2.5rem;
  color: var(--ab-primary);
  margin-top: 25px; }

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--ab-dark);
  color: var(--ab-white);
  position: relative;
  overflow: hidden; }

.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ab-font-heading);
  font-size: 25rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1; }

.testimonials-section .section-title {
  color: var(--ab-white); }

.testimonial-card {
  text-align: center;
  padding: 50px 40px;
  position: relative; }

.testimonial-card .stars {
  color: var(--ab-gold);
  font-size: 0.9rem;
  letter-spacing: 5px;
  margin-bottom: 25px; }

.testimonial-card blockquote {
  font-family: var(--ab-font-heading);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 30px;
  letter-spacing: 0.3px; }

.testimonial-card .author {
  font-family: var(--ab-font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ab-primary); }

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0 6px; }

.carousel-indicators .active {
  background-color: var(--ab-primary); }

/* ============ CONTACT / CTA FINAL ============ */
.contact-section {
  background: var(--ab-white); }

.contact-card {
  text-align: center;
  padding: 40px 30px;
  transition: var(--ab-transition);
  border: 1px solid rgba(0, 0, 0, 0.05); }

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent; }

.contact-card .icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--ab-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--ab-primary);
  transition: var(--ab-transition); }

.contact-card:hover .icon-circle {
  background: var(--ab-primary);
  color: var(--ab-white); }

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400; }

.contact-card p {
  font-size: 0.9rem; }

/* ============ INSTAGRAM SECTION ============ */
.instagram-section {
  background: var(--ab-cream);
  text-align: center; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px; }

.instagram-grid .insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer; }

.instagram-grid .insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease; }

.instagram-grid .insta-item::after {
  content: '\f16d';
  font-family: 'bootstrap-icons';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 1.8rem;
  color: var(--ab-white);
  z-index: 2;
  transition: var(--ab-transition); }

.instagram-grid .insta-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(176, 141, 110, 0.6);
  z-index: 1;
  opacity: 0;
  transition: var(--ab-transition); }

.instagram-grid .insta-item:hover img {
  transform: scale(1.1); }

.instagram-grid .insta-item:hover::after {
  transform: translate(-50%, -50%) scale(1); }

.instagram-grid .insta-item:hover::before {
  opacity: 1; }

/* ============ FOOTER ============ */
footer {
  background: var(--ab-darker);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 30px; }

footer h5 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ab-white);
  margin-bottom: 25px;
  font-family: var(--ab-font-body); }

footer a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: var(--ab-transition); }

footer a:hover {
  color: var(--ab-primary); }

footer .footer-logo img {
  height: 45px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px; }

footer .footer-links li {
  list-style: none;
  margin-bottom: 10px; }

footer .footer-links a::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 1px;
  background: var(--ab-primary);
  margin-right: 10px;
  vertical-align: middle;
  transition: var(--ab-transition); }

footer .footer-links a:hover::before {
  width: 25px; }

footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  margin-right: 8px;
  font-size: 1rem;
  transition: var(--ab-transition); }

footer .social-links a:hover {
  background: var(--ab-primary);
  border-color: var(--ab-primary);
  color: var(--ab-white); }

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 25px;
  font-size: 0.78rem; }

/* ============ FLOATING CONTACT ============ */
.floating-contact {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px; }

.floating-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ab-white);
  font-size: 1.2rem;
  transition: var(--ab-transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); }

.floating-contact .whatsapp-btn {
  background: #25D366; }

.floating-contact .phone-btn {
  background: var(--ab-primary); }

.floating-contact .email-btn {
  background: var(--ab-dark); }

.floating-contact a:hover {
  transform: scale(1.1); }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 200px;
  width: 45px;
  height: 45px;
  background: var(--ab-dark);
  color: var(--ab-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--ab-transition);
  z-index: 997; }

.back-to-top.visible {
  opacity: 1;
  visibility: visible; }

.back-to-top:hover {
  background: var(--ab-primary);
  transform: translateY(-3px); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer; }

.lightbox.active {
  display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain; }

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: var(--ab-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--ab-transition); }

.lightbox-close:hover {
  color: var(--ab-primary); }

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1200px) {
  .gallery-masonry {
    columns: 3; } }
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.6rem;
    letter-spacing: 6px; }

  .hero-content-panel {
    height: 40%; }

  .hero-slider,
  .hero-overlay {
    height: 60%; }

  .hero-scroll {
    bottom: calc(40% + 15px); }

  .hero-indicators {
    top: 30%; }

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

  .intro-section .intro-text-col {
    padding-left: 0;
    margin-top: 60px; }

  .intro-section .intro-image-float {
    display: none; }

  .intro-section .intro-image-main {
    height: 450px;
    box-shadow: none; }

  .gallery-masonry {
    columns: 2; }

  .parallax-cta {
    background-attachment: scroll; }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr); }

  .navbar-collapse {
    background: rgba(26, 26, 26, 0.98);
    padding: 30px;
    margin-top: 15px; } }
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 1.8rem;
    letter-spacing: 4px; }

  .hero-content .hero-script {
    font-size: 1.3rem; }

  .hero-content .hero-lead {
    font-size: 0.82rem; }

  .hero-content-panel {
    height: 45%; }

  .hero-slider,
  .hero-overlay {
    height: 55%; }

  .hero-scroll {
    display: none; }

  .section-padding {
    padding: 80px 0; }

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

  .section-subtitle {
    font-size: 1.4rem; }

  .gallery-masonry {
    columns: 2;
    column-gap: 5px; }

  .parallax-cta .content h2 {
    font-size: 1.8rem;
    letter-spacing: 2px; }

  .hero-indicators {
    display: none; }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
  .gallery-masonry {
    columns: 1; } }
/* ============ CUSTOM SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 6px; }

::-webkit-scrollbar-track {
  background: var(--ab-dark); }

::-webkit-scrollbar-thumb {
  background: var(--ab-primary); }
