/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Fantasy', serif;
  overflow-x: hidden;
  color: #333;
}

/* Fixed Header Bar */
.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.header-content {
  width: 100%;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  font-family: 'Fantasy', serif;
  margin: 0;
  letter-spacing: 2px;
  justify-self: start;
}

.nav-links {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-self: center;
  grid-column: 2;
}

.contact-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-self: end;
}

.contact-icons a {
  color: #333;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact-icons a:hover {
  color: #667eea;
}

.contact-icons a[data-phone] {
  position: relative;
  cursor: pointer;
}

.contact-icons a[data-phone]:hover::after {
  content: attr(data-phone);
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  padding: 8px 12px;
  background: #333;
  color: white;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-family: 'Fantasy', serif;
  z-index: 1001;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 1.6rem;
  font-family: 'Fantasy', serif;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #667eea;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #667eea;
  transition: width 0.3s ease;
}

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

/* Cityscape background layer */
.cityscape-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: url('https://images.unsplash.com/photo-1514911834724-fbe785fc8a6a?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=2070');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Parallax Container */
.parallax-container {
  position: relative;
  z-index: 1;
}

/* Page Wrapper for standalone pages */
.page-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Individual Sections */
.parallax-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.parallax-section.active {
  z-index: 50;
}

.parallax-section.fade-out {
  z-index: 10;
}

/* Page Section Layout */
.page-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
}

/* Section Title Bar */
.section-title-bar {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.section-title-bar h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  font-family: 'Fantasy', serif;
  letter-spacing: 3px;
  margin: 0;
}

/* Image Band */
.image-band {
  position: absolute;
  top: 20vh;
  left: 10%;
  right: 10%;
  height: 50vh;
  background-image: url('https://images.unsplash.com/photo-1514911834724-fbe785fc8a6a?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=2070');
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

/* Text Content Below Image */
.text-content {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 60px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  backdrop-filter: blur(10px);
  z-index: 15;
}

.text-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 900;
  font-family: 'Fantasy', serif;
  letter-spacing: 2px;
}

.text-content h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 700;
  font-family: 'Fantasy', serif;
  letter-spacing: 2px;
}

.text-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #000000;
  font-family: 'Fantasy', serif;
  font-weight: 400;
}

/* Legacy content layer - keep for compatibility */
.content-layer {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px;
  border-radius: 20px;
  max-width: 800px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  backdrop-filter: blur(10px);
  transform: scale(0.3);
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
}

.content-layer h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 900;
  font-family: 'Fantasy', serif;
  letter-spacing: 2px;
}

.content-layer p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #000000;
  font-family: 'Fantasy', serif;
  font-weight: 400;
}

/* Clickable section headers with hover underline */
.content-layer h1 a {
  display: inline-block;
  border-bottom: 3px solid transparent;
  transition: border-bottom 0.3s ease;
}

.content-layer h1 a:hover {
  border-bottom: 3px solid #000;
}

/* Individual Section Customization */
/* All sections now use white background with black text */
/* You can customize individual sections here if needed */

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    padding: 0 20px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .content-layer {
    padding: 40px 30px;
    max-width: 90%;
  }

  .content-layer h1 {
    font-size: 2.5rem;
  }

  .content-layer p {
    font-size: 1.1rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }
}

/* Banner Band - Navy blue placeholder for future image */
.banner-band {
  width: 100%;
  height: 16vh;
  background-color: navy;
  position: fixed;
  top: 65px;
  left: 0;
  z-index: 999;
}

/* Section Header - Centered title below banner */
.section-header {
  position: fixed;
  top: calc(65px + 16vh);
  left: 0;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  background: white;
  z-index: 998;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  font-family: 'Fantasy', serif;
  letter-spacing: 3px;
  margin: 0;
}