* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #0f0f1a;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: #00f7ff;
  color: #0f0f1a;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.nav {
  background-color: #121222;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 247, 255, 0.08);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  font-size: 28px;
  font-weight: bold;
  color: #00f7ff;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links ul li a {
  font-size: 16px;
  color: #fff;
  transition: 0.3s;
}

.nav-links ul li a:hover {
  color: #00f7ff;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #00f7ff;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #0f0f1a;
  transition: 0.35s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #00f7ff;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}

.mobile-nav ul li a:hover {
  color: #00f7ff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 70px 25px;
  background: linear-gradient(145deg, #0d0d1a, #1b1b2e);
}

.hero-text {
  flex: 1;
  padding-right: 20px;
}

.hero-text h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 16px;
  color: #aaa;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 19px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 14px;
  }
}

.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.frame-box {
  background-color: #3b2f2f;
  padding: 10px;
  border: 6px solid #2a1e1e;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  transform: rotate(-2deg);
  transition: 0.3s;
}

.frame-box:nth-child(2) {
  transform: rotate(2deg);
}

.frame-box:hover {
  transform: scale(1.06);
}

.frame-box img {
  width: 230px;
  border-radius: 4px;
}

.about {
  padding: 70px 0;
  background-color: #161625;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  text-align: justify;
  color: #ccc;
}

.gallery-section {
  padding: 70px 0;
}

.gallery-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.photo-card {
  background-color: #1f1f2f;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 0 12px rgba(0, 247, 255, 0.12);
  transition: 0.3s;
}

.photo-card:hover {
  transform: scale(1.06);
}

.photo-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.photo-card p {
  font-size: 14px;
  color: #ccc;
  text-align: center;
}

.contact-float {
  position: fixed;
  bottom: 30px;
  right: 16px;
  z-index: 1000;
}

.contact-button {
  background-color: dimgrey;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px gray;
  transition: 0.3s;
}

.contact-button:hover {
  background-color: gray;
}

#contact-toggle {
  position: absolute;
  opacity: 0;
}

.contact-options {
  display: none;
  margin-top: 10px;
  flex-direction: column;
  gap: 10px;
}

#contact-toggle:checked ~ .contact-options {
  display: flex;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.contact-link.instagram {
  background-color: #c13584;
}

.contact-link:hover {
  opacity: 0.85;
}

.footer {
  text-align: center;
  padding: 25px 0;
  background-color: #101018;
  font-size: 14px;
  color: #888;
  border-top: 1px solid rgba(0, 247, 255, 0.15);
}

#copyright {
  margin-top: 80px;
}

.media-partner-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #00f7ff;
}

.media-partner {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.media-card {
  position: relative;
  width: 180px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.25);
}

.media-card img {
  width: 100%;
  transition: 0.3s;
}

.media-card:hover img {
  transform: scale(1.1);
}

.media-text {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #00f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  opacity: 0;
  transition: 0.3s;
}

.media-card:hover .media-text {
  opacity: 1;
}

.email-form {
  max-width: 420px;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-form textarea {
  background: rgba(31, 31, 47, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid #00f7ff55;
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  font-size: 14px;
  resize: none;
}

.email-form button {
  background: linear-gradient(145deg, #00f7ff, #00cfd6);
  color: #0f0f1a;
  border: none;
  padding: 11px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.4);
}

.email-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 247, 255, 0.7);
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 10px;
}

.rating input {
  display: none;
}

.rating label {
  color: #555;
  cursor: pointer;
  transition: 0.3s;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
  color: #00f7ff;
  text-shadow: 0 0 8px rgba(0, 247, 255, 0.9);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-img {
    flex-direction: column;
  }
}

.highlight {
  color: #00f7ff;
}
.footer-flex {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-box {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

/* RUNNING TEXT PROMO */
.global-running-text {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
}

.running-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: runningText 20s linear infinite;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.running-track a {
  color: #00f7ff;
  font-weight: bold;
  text-decoration: none;
}

.running-track a:hover {
  text-decoration: underline;
}

@keyframes runningText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
  }
}
.footer-flex {
  flex-direction: row-reverse;
}
.contact-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #00f7ff;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.6);
}

@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-box {
    width: 90%;
    min-width: 0;
    text-align: center;
    margin-bottom: 0;
  }

  .media-card {
    width: 150px;
    max-width: 80%;
    margin: auto;
  }

  .email-form {
    width: 100%;
  }

  .photo-card img,
  .frame-box img {
    max-width: 100%;
  }
}
