/* Google Fonts - Creepster */
@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');

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

h1, h2 {
  font-family: 'Creepster', cursive;
  color: #ed3090;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
}

/* Navigation Styles */
.navbar {
  background-color: #000000;
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-logo-img {
  height: 3.5rem;
  width: auto;
  display: block;
}

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

.nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.nav-link:hover {
  background-color: #34495e;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #000000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 0;
  }

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

  .nav-item {
    margin: 0.5rem 0;
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Main Content */
main {
  padding-top: 70px;
}

/* Section Styles */
section {
  min-height: 100vh;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

section h1 {
  font-size: 3rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

section p {
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Section Color Variations */
#home {
  background-color: #000000;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.home-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

#home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

#home .section-content {
  position: relative;
  z-index: 2;
}

#location {
  background-color: #000000;
  padding-top: 0;
  scroll-margin-top: 70px;
  min-height: auto;
  align-items: flex-start;
}

#connect {
  background-color: #000000;
  padding-top: 0;
  scroll-margin-top: 70px;
  min-height: calc(100vh - 70px);
  padding-bottom: 6rem;
}

.section-content {
  text-align: center;
  max-width: 1200px;
  width: 100%;
}


/* Logo Styles */
.logo {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

#home h1 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}

#home p {
  margin-top: 0;
}

/* Location Section Styles */
.location-container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 2rem auto;
}

.map-container {
  flex: 1;
  min-width: 0;
  padding-top: 4rem; 
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.info-container {
  flex: 1;
  text-align: left;
}

.address, .hours {
  margin-bottom: 2rem;
}

.address h2, .hours h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ed3090;
}

.address p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #333333;
  font-size: 1rem;
  color: #ffffff;
}

.hours-table td:first-child {
  font-weight: 600;
  width: 40%;
}

.hours-table td:last-child {
  text-align: right;
}

/* Social Links Styles */
.social-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 1rem;
}

.social-link:hover {
  transform: translateY(-5px);
  color: #ed3090;
}

.social-link svg {
  transition: fill 0.3s ease;
}

.social-link:hover svg {
  fill: #ed3090;
}

.social-link span {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-note {
  margin-top: 0.5rem;
}

#connect .contact-note a,
#connect .contact-note a:visited,
#connect .contact-note a:link {
  color: #ed3090 !important;
  text-decoration: none;
}

#connect .contact-note a:hover {
  text-decoration: underline;
}

/* Connect Section Graphic */
#connect {
  position: relative;
}

.connect-graphic {
  position: absolute;
  bottom: 5rem;
  right: 4rem;
  max-width: 450px;
  height: auto;
  transform: rotate(13.3deg);
}

@media screen and (max-width: 1400px) {
  .connect-graphic {
    max-width: 350px;
  }
}

@media screen and (max-width: 1100px) {
  .connect-graphic {
    max-width: 250px;
    bottom: 3rem;
    right: 2rem;
  }
}

@media screen and (max-width: 900px) {
  .connect-graphic {
    position: static;
    display: block;
    margin: 3rem auto 0;
    max-width: 250px;
    transform: rotate(13.3deg);
  }
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
  section h1 {
    font-size: 2rem;
  }

  section p {
    font-size: 1rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .location-container {
    flex-direction: column;
    gap: 2rem;
  }

  .map-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .map-container iframe {
    height: 300px;
    width: 100%;
  }

  .info-container {
    text-align: center;
    width: 100%;
  }

  .hours-table {
    margin: 0 auto;
    width: auto;
  }

  .hours-table td:last-child {
    text-align: right;
  }

  .logo {
    max-width: 500px;
  }
}

/* Responsive for shorter viewports */
@media screen and (max-height: 800px) {
  #location {
    padding: 1.5rem 2rem;
  }

  #location h1 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .location-container {
    gap: 1.5rem;
    margin: 1rem auto;
  }

  .map-container iframe {
    height: 300px;
  }

  .address, .hours {
    margin-bottom: 1rem;
  }

  .address h2, .hours h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .address p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hours-table td {
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
  }
}
