/* ============================================
   FITNESS GALAXY — Old School Gym / Hard Rock
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow+Condensed:wght@300;400;500;600;700&family=Special+Elite&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-gray: #1a1a1a;
  --mid-gray: #2a2a2a;
  --light-gray: #888;
  --off-white: #e0e0e0;
  --white: #f5f5f5;
  --red: #cc0000;
  --red-bright: #e60000;
  --red-glow: #ff1a1a;
  --gold: #c8a84e;
  --gold-bright: #e6c55a;
  --orange: #e65c00;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Noise / Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--red);
  padding: 0 40px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Special Elite', cursive;
  font-size: 1.8rem;
  color: var(--red-bright);
  letter-spacing: 3px;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-links a {
  display: block;
  padding: 10px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.3s, background 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-bright);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 80%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.4), rgba(10,10,10,0.85)),
    url('/images/nancy-portrait.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, var(--black) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  border: 2px solid var(--red);
  color: var(--red-bright);
  padding: 8px 25px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: 'Special Elite', cursive;
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(204, 0, 0, 0.3);
}

.hero h1 .highlight {
  color: var(--red-bright);
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 50px;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  background: var(--red-bright);
  box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* --- Section Styling --- */
.section {
  padding: 100px 0;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 15px;
}

.section-header h2 .accent {
  color: var(--red);
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 20px;
}

.section-header p {
  color: var(--light-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Welcome / About --- */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-text h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.welcome-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--off-white);
  margin-bottom: 20px;
}

.welcome-image {
  position: relative;
}

.welcome-image img {
  width: 100%;
  border: 3px solid var(--mid-gray);
  filter: grayscale(30%);
  transition: filter 0.5s;
}

.welcome-image:hover img {
  filter: grayscale(0%);
}

.welcome-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--red);
  z-index: -1;
}

/* --- Facilities / Rooms --- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.facility-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  cursor: default;
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.6s;
  filter: grayscale(50%) brightness(0.7);
}

.facility-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(0.9);
}

.facility-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(10,10,10,0.95));
}

.facility-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 5px;
}

.facility-card .facility-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 3px 12px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

/* --- About Fitness --- */
.about-fitness-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-fitness-content p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--off-white);
}

.about-fitness-content .quote {
  font-family: 'Special Elite', cursive;
  font-size: 1.6rem;
  color: var(--red-bright);
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid var(--red);
  text-align: left;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.price-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.price-card:hover::before {
  transform: scaleX(1);
}

.price-card.featured {
  border-color: var(--red);
  background: linear-gradient(to bottom, rgba(204,0,0,0.1), var(--dark-gray));
}

.price-card.featured::before {
  transform: scaleX(1);
}

.price-card .duration {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--light-gray);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.price-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-card .price .euro {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--red);
}

.price-card .price-note {
  font-size: 0.85rem;
  color: var(--light-gray);
  margin-top: 8px;
}

.pricing-extra {
  text-align: center;
  margin-top: 40px;
  padding: 25px;
  border: 1px dashed var(--mid-gray);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-extra h4 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing-extra p {
  color: var(--off-white);
  font-size: 1.1rem;
}

.pricing-extra .price-highlight {
  color: var(--red-bright);
  font-weight: 700;
  font-size: 1.3rem;
}

/* --- Owner / Info --- */
.owner-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: start;
}

.owner-photo {
  position: relative;
}

.owner-photo img {
  width: 100%;
  border: 3px solid var(--mid-gray);
  filter: grayscale(20%);
}

.owner-photo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  left: 10px;
  top: 10px;
  border: 2px solid var(--red);
  z-index: -1;
}

.owner-info h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 5px;
}

.owner-info .owner-title {
  font-family: 'Oswald', sans-serif;
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.owner-info p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--off-white);
  margin-bottom: 15px;
}

.owner-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--mid-gray);
}

.stat {
  text-align: center;
}

.stat .stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat .stat-label {
  font-size: 0.8rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* --- Services --- */
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--dark);
  border: 1px solid var(--mid-gray);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  transition: all 0.3s;
}

.service-tag:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(204, 0, 0, 0.1);
}

.service-tag .icon {
  font-size: 1.3rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.contact-item p,
.contact-item a {
  color: var(--off-white);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--red-bright);
}

.hours-grid {
  display: grid;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 1rem;
}

.hours-row .day {
  color: var(--off-white);
  font-weight: 500;
}

.hours-row .time {
  color: var(--light-gray);
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 2px solid var(--mid-gray);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(90%);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  border-top: 2px solid var(--red);
  padding: 50px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo {
  font-family: 'Special Elite', cursive;
  font-size: 1.5rem;
  color: var(--red);
}

.footer-logo span {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--mid-gray);
  color: var(--light-gray);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.footer-services {
  text-align: center;
  margin-bottom: 30px;
  color: var(--light-gray);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--red-bright);
  transform: translateY(-3px);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .welcome-grid,
  .contact-grid,
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .owner-grid {
    gap: 30px;
  }

  .owner-photo {
    max-width: 350px;
    margin: 0 auto;
  }

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

  .facility-card {
    height: 300px;
  }
}

@media (max-width: 768px) {
  /* Top bar: hide on mobile or shrink */
  .top-bar {
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 6px 10px;
    line-height: 1.4;
  }

  .navbar .container {
    padding: 0 15px;
  }

  .nav-logo {
    font-size: 1.4rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateY(-110%);
    transition: transform 0.4s;
    border-bottom: 2px solid var(--red);
    z-index: 1000;
    visibility: hidden;
  }

  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    padding: 15px 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--mid-gray);
  }

  .nav-links a::after {
    display: none;
  }

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

  .facility-card {
    height: 250px;
  }

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

  .owner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat {
    min-width: unset;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 85vh;
  }

  /* Owner photo: remove decorative border on mobile */
  .owner-photo::after {
    display: none;
  }

  .owner-photo {
    max-width: 280px;
  }

  /* Welcome image: remove decorative border on mobile */
  .welcome-image::before {
    display: none;
  }

  /* Hours: stack on mobile */
  .hours-row {
    flex-direction: column;
    gap: 2px;
  }

  /* Contact icon smaller */
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .contact-item {
    gap: 15px;
  }

  /* Map */
  .map-container {
    min-height: 250px;
  }

  .map-container iframe {
    min-height: 250px;
  }

  /* Scroll to top: smaller on mobile */
  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    font-size: 1.2rem;
  }

  /* Footer */
  .footer-services {
    font-size: 0.65rem;
    letter-spacing: 2px;
    line-height: 1.8;
  }

  .footer {
    padding: 30px 0 20px;
  }

  /* Services tags */
  .service-tag {
    padding: 12px 18px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    display: none;
  }

  .navbar .container {
    height: 60px;
  }

  .nav-links {
    top: 60px;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .price-card {
    padding: 25px 15px;
  }

  .price-card .price {
    font-size: 2.2rem;
  }

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

  .hero-tagline {
    letter-spacing: 4px;
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 18px;
    letter-spacing: 3px;
  }

  .hero-cta {
    padding: 14px 35px;
    font-size: 0.95rem;
  }

  .section {
    padding: 50px 0;
  }

  .about-fitness-content .quote {
    font-size: 1.2rem;
  }

  .owner-info h3 {
    font-size: 1.5rem;
  }

  .stat .stat-number {
    font-size: 2rem;
  }
}
