/* ====== RESET / BODY ====== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: white;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  background: url("bildes/background.jpg") center/cover no-repeat fixed;
  position: relative;
}

/* ====== DARK OVERLAY ====== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(6px);
  z-index: -1;
}

/* ====== HEADER ====== */
.site-header {
  padding-top: 30px;
}

.logo {
  margin: 0;
  font-family: "Ms Madi", cursive;
  font-size: 96px;
  font-weight: 400;
  color: white;
  text-shadow: 0 0 25px rgba(255,255,255,0.15);
}

/* ====== MENU ====== */
.menu-bar {
  margin-top: 24px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  padding: 22px 20px;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 19px;
  letter-spacing: 1px;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

.menu a:hover {
  transform: scale(1.12);
  color: #e5e5e5;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.menu a:hover::after {
  transform: scaleX(1);
}

/* ====== CONTENT ====== */
.content {
  width: 100%;
}

/* ====== HERO ====== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 110px 20px 80px;
}

.hero-box {
  max-width: 900px;
  width: 100%;
  padding: 50px 35px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.30);
}

.hero-tag {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.hero-box h2 {
  margin: 0;
  font-size: 58px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-text {
  max-width: 720px;
  margin: 24px auto 34px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
  font-weight: 300;
}

/* ====== BUTTONS ====== */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  background: white;
  color: black;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: scale(1.06);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}

/* ====== SERVICES ====== */
.services {
  padding: 20px 20px 90px;
}

.services h3 {
  margin: 0 0 40px;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 35px 25px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.service-card i {
  font-size: 32px;
  margin-bottom: 18px;
}

.service-card h4 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
}

/* ====== FOOTER ====== */
.footer {
  padding: 24px 20px 28px;
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Oswald', sans-serif;
}

.footer p {
  margin: 0 0 16px;
  color: #aaa;
  font-size: 14px;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
  transform: scale(1.08);
  color: #d6d6d6;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .logo {
    font-size: 72px;
  }

  .hero-box h2 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
}

@media (max-width: 600px) {
  .logo {
    font-size: 56px;
  }

  .menu {
    gap: 24px;
  }

  .menu a {
    font-size: 17px;
  }

  .hero {
    padding: 80px 16px 60px;
  }

  .hero-box {
    padding: 35px 20px;
  }

  .hero-box h2 {
    font-size: 32px;
  }

  .hero-tag {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .hero-text {
    font-size: 17px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .services h3 {
    font-size: 28px;
  }

  .service-card h4 {
    font-size: 22px;
  }
}

/* ====== RESET ====== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* ====== BODY ====== */
.gallery-page {
  min-height: 100vh;
  font-family: 'Oswald', sans-serif;
  color: white;
  background:
    linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)),
    url("bildes/background.jpg") center/cover no-repeat fixed;
}

/* ====== HERO ====== */
.gallery-hero {
  position: relative;
  padding: 90px 20px 50px;
  text-align: center;
  overflow: hidden;
}

.gallery-bg-text {
  margin: 0;
  position: absolute;
  inset: 10px 0 auto 0;
  font-family: "Ms Madi", cursive;
  font-size: 130px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-line {
  display: block;
  width: 90px;
  height: 2px;
  margin: 0 auto 20px;
  background: linear-gradient(to right, transparent, white, transparent);
}

.gallery-label {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.gallery-title {
  margin: 0;
  font-size: 64px;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.gallery-subtitle {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
}

/* ====== INTRO CARD ====== */
.gallery-intro-card {
  max-width: 1000px;
  margin: 10px auto 50px;
  padding: 0 20px;
}

.gallery-intro-card p {
  margin: 0;
  padding: 26px 28px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

/* ====== GALLERY GRID ====== */
.gallery-masonry {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px 80px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.gallery-masonry img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  break-inside: avoid;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-masonry img {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

.gallery-masonry img:nth-child(1) { animation-delay: 0.1s; }
.gallery-masonry img:nth-child(2) { animation-delay: 0.2s; }
.gallery-masonry img:nth-child(3) { animation-delay: 0.3s; }
.gallery-masonry img:nth-child(4) { animation-delay: 0.4s; }
.gallery-masonry img:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-masonry img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* ====== LIGHTBOX ====== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.94);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox img {
  max-width: 92%;
  max-height: 88%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 34px;
  font-size: 42px;
  color: white;
  cursor: pointer;
  line-height: 1;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1400px) {
  .gallery-masonry {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-bg-text {
    font-size: 90px;
  }

  .gallery-title {
    font-size: 52px;
  }
}

@media (max-width: 700px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-bg-text {
    font-size: 62px;
    top: 30px;
  }

  .gallery-title {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .gallery-subtitle {
    font-size: 17px;
  }

  .gallery-intro-card p {
    font-size: 16px;
    padding: 22px 18px;
  }

  .gallery-masonry img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .gallery-masonry img {
    height: auto;
  }
}

/* ====== PAR MANI LAPAS BODY ====== */
.about-page {
  min-height: 100vh;
  font-family: 'Oswald', sans-serif;
  color: white;
  background:
    linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)),
    url("bildes/background.jpg") center/cover no-repeat fixed;
}

/* ====== PAR MANI HERO ====== */
.about-hero {
  position: relative;
  padding: 90px 20px 50px;
  text-align: center;
  overflow: hidden;
}

.about-bg-text {
  margin: 0;
  position: absolute;
  inset: 10px 0 auto 0;
  font-family: "Ms Madi", cursive;
  font-size: 130px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.about-line {
  display: block;
  width: 90px;
  height: 2px;
  margin: 0 auto 20px;
  background: linear-gradient(to right, transparent, white, transparent);
}

.about-label {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.about-title {
  margin: 0;
  font-size: 64px;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.about-subtitle {
  max-width: 700px;
  margin: 22px auto 0;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
}

/* ====== PAR MANI SATURS ====== */
.about-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}

.about-card {
  display: grid;
  grid-template-columns: 2.7fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.about-text,
.about-side-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text,
.about-side-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text:hover,
.about-side-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.about-text {
  padding: 48px 42px;
  text-align: left;
}

.about-text h2 {
  margin: 0 0 26px;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text p {
  margin: 0 0 22px;
  font-size: 22px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 300;
}

.about-side-box {
  padding: 30px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.about-quote {
  text-align: center;
}

.about-quote i {
  font-size: 34px;
  margin-bottom: 18px;
}

.about-quote p {
  margin: 0;
  font-size: 24px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* ====== POGAS ====== */
.about-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  background: white;
  color: black;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.about-btn:hover {
  transform: scale(1.05);
}

.about-btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.about-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .about-bg-text {
    font-size: 90px;
  }

  .about-title {
    font-size: 52px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .about-bg-text {
    font-size: 62px;
    top: 30px;
  }

  .about-title {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .about-subtitle {
    font-size: 17px;
  }

  .about-text {
    padding: 28px 20px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p,
  .about-quote p {
    font-size: 16px;
  }
}

/* ====== CONTACT PAGE ====== */
.contact-page {
  min-height: 100vh;
  font-family: 'Oswald', sans-serif;
  color: white;
  background:
    linear-gradient(rgba(7, 7, 7, 0.78), rgba(7, 7, 7, 0.88)),
    url("bildes/background.jpg") center/cover no-repeat fixed;
}

/* ====== HERO ====== */
.contact-hero {
  position: relative;
  padding: 90px 20px 50px;
  text-align: center;
}

.contact-bg-text {
  position: absolute;
  inset: 10px 0 auto 0;
  font-family: "Ms Madi", cursive;
  font-size: 130px;
  color: rgba(255,255,255,0.05);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-line {
  width: 90px;
  height: 2px;
  margin: 0 auto 20px;
  background: linear-gradient(to right, transparent, white, transparent);
}

.contact-label {
  font-size: 14px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.65);
}

.contact-title {
  font-size: 64px;
  margin: 0;
}

.contact-subtitle {
  margin-top: 20px;
  color: rgba(255,255,255,0.8);
}

/* ====== FORM ====== */
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 100px;
}

.contact-form {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 550px;

}

.contact-form h2 {
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.10);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 0 18px rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.13);
}

/* ====== BUTTON ====== */
.contact-btn {
  width: 100%;
  padding: 18px;
  border-radius: 999px;
  border: none;
  background: white;
  color: black;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ====== THANK YOU PAGE ====== */
.thanks-page {
  min-height: 100vh;
  font-family: 'Oswald', sans-serif;
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(rgba(7,7,7,0.85), rgba(7,7,7,0.9)),
    url("bildes/background.jpg") center/cover no-repeat;
}

.thanks-container {
  text-align: center;
  max-width: 500px;
  padding: 40px;

  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}

.thanks-container h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.thanks-container p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.thanks-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: white;
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.thanks-btn:hover {
  transform: scale(1.05);
}

/* ====== HOME BUTTON ====== */
.home-btn {
  position: fixed;
  top: 25px;
  left: 25px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.home-btn i {
  font-size: 20px;
  line-height: 1;
}

.home-btn:hover {
  transform: scale(1.08);
  background: white;
  color: black;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-links-box {
  width: 100%;
  text-align: left;
}

.about-links-box h3 {
  margin: 0 0 24px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.about-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.about-social-link i {
  font-size: 22px;
  width: 24px;
  text-align: center;
}

.about-social-link span {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.about-social-link:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

/* ====== CONTACT GRID ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ====== LABĀ KASTE ====== */
.contact-side {
  background: rgba(255,255,255,0.06);
  padding: 50px 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
}

.contact-side h3 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ====== LINKI ====== */
.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 18px;
  padding: 20px 24px;

  border-radius: 20px;

  text-decoration: none;
  color: white;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;
}

.contact-link i {
  font-size: 26px;
  width: 28px;
  text-align: center;
}

.contact-link span {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.contact-link:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}