/* Header styles */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.85);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}
.hamburger-menu span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger-menu.hamburger-open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger-menu.hamburger-open span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.hamburger-open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.site-nav {
  display: flex;
  gap: 32px;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.site-nav a:hover {
  color: #ffd700;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
  box-sizing: border-box;
}

.hero {
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 100px 60px;
  border-radius: 32px;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.white-bg {
  background: rgba(255,255,255,0.15) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.overlay h1 {
  color: #fff;
  font-size: 4rem;
  margin: 0 0 28px 0;
  letter-spacing: 2px;
  font-weight: 800;
}

.overlay h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about, .contact {
  background: #111;
  color: #fff;
  padding: 80px 20px 60px 20px;
  display: flex;
  justify-content: center;
}

.about-content, .contact-content {
  max-width: 800px;
  width: 100%;
  font-size: 1.15rem;
  line-height: 1.7;
  text-align: left;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}

.about-content h3, .contact-content h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.contact-content a {
  color: #4fc3f7;
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
}
.contact-content a:hover {
  text-decoration: underline;
}

.contact-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.contact-row h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}
.contact-email {
  font-size: 1.15rem;
  color: #4fc3f7;
  font-weight: 500;
  text-align: right;
  word-break: break-all;
}

.site-footer {
  background: #181818;
  color: #bbb;
  padding: 32px 20px 24px 20px;
  text-align: center;
  font-size: 0.98rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-link {
  color: #4fc3f7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-divider {
  color: #444;
  margin: 0 8px;
}
.footer-copy {
  color: #bbb;
}

/* Mobile styles */
@media (max-width: 768px) {
  .header-content {
    padding: 16px 20px;
  }
  .site-nav {
    gap: 24px;
  }
  .site-nav a {
    font-size: 1rem;
  }
  .hero {
    background-attachment: scroll;
    background-position: center center;
  }
  .overlay {
    padding: 60px 30px;
    border-radius: 24px;
    max-width: 95vw;
  }
  .overlay h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .overlay h2 {
    font-size: 1.2rem;
  }
  .about, .contact {
    padding: 60px 16px 40px 16px;
  }
  .about-content, .contact-content {
    font-size: 1.05rem;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-content h3, .contact-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .contact-row h3 {
    font-size: 1.6rem;
  }
  .contact-email {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .header-content {
    padding: 12px 16px;
  }
  .header-logo {
    font-size: 1.3rem;
  }
  .hamburger-menu {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(17, 17, 17, 0.95);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    gap: 32px;
    transition: right 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .site-nav.nav-open {
    right: 0;
  }
  .site-nav a {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .hero {
    background-attachment: scroll;
    background-position: center center;
  }
  .overlay {
    padding: 40px 20px;
    border-radius: 24px;
    max-width: 92vw;
    margin: 24px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  }
  .overlay h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  .overlay h2 {
    font-size: 1rem;
    letter-spacing: 1px;
  }
  .about, .contact {
    padding: 50px 12px 30px 12px;
  }
  .about-content, .contact-content {
    font-size: 1rem;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 1.6;
  }
  .about-content h3, .contact-content h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .contact-row h3 {
    font-size: 1.4rem;
  }
  .contact-email {
    font-size: 1rem;
    text-align: left;
  }
  .site-footer {
    padding: 24px 16px 20px 16px;
    font-size: 0.9rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 8px;
  }
  .footer-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 10px 12px;
  }
  .header-logo {
    font-size: 1.2rem;
  }
  .site-nav {
    gap: 16px;
  }
  .site-nav a {
    font-size: 0.9rem;
  }
  .overlay {
    padding: 30px 16px;
    border-radius: 16px;
    max-width: 90vw;
  }
  .overlay h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .overlay h2 {
    font-size: 0.9rem;
  }
  .about, .contact {
    padding: 40px 8px 24px 8px;
  }
  .about-content, .contact-content {
    font-size: 0.95rem;
    padding-left: 8px;
    padding-right: 8px;
  }
  .about-content h3, .contact-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .contact-row h3 {
    font-size: 1.3rem;
  }
  .contact-email {
    font-size: 0.95rem;
  }
  .site-footer {
    padding: 20px 12px 16px 12px;
    font-size: 0.85rem;
  }
} 