
:root {
  --color-bg: #050816;
  --color-primary: #0086ff;
  --color-secondary: #ff7a00;
  --color-accent: #b800ff;
  --color-light: #ffffff;
  --color-muted: #b0b7c3;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --transition-fast: 0.25s ease;
  --max-width: 1200px;
  --nav-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-light);
  background: radial-gradient(circle at top left, #1b1f3b 0, #050816 45%, #000000 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  line-height: 1.6;
}

/* NAVBAR */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 16px 80px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 134, 255, 0.22), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(255, 122, 0, 0.2), transparent 55%),
    linear-gradient(160deg, #050816 0, #050816 55%, #020309 100%);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--nav-height);
  padding-top: 10px;
  backdrop-filter: blur(18px);
  background: linear-gradient(120deg, rgba(5, 8, 22, 0.92), rgba(5, 8, 22, 0.75));
  border-radius: 999px;
  margin-top: 16px;
  padding-inline: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.7rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--color-muted);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--color-light);
}

/* Mobile menu */

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* HERO CONTENT */

.hero-content {
  max-width: var(--max-width);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3.1vw + 1.7rem, 3.4rem);
  margin-bottom: 14px;
}

.hero-text p {
  color: var(--color-muted);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.btn.primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-light);
  box-shadow: 0 12px 32px rgba(0, 134, 255, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 134, 255, 0.5);
}

.btn.ghost {
  border-color: rgba(255,255,255,0.26);
  color: var(--color-light);
  background: rgba(255,255,255,0.02);
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.06);
}

.btn.full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-badges span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-muted);
}

.hero-media {
  position: relative;
}

.hero-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-main-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-thumbs {
  position: absolute;
  inset-inline: auto 0;
  left: 8%;
  bottom: -14%;
  display: flex;
  gap: 10px;
}

.hero-thumbs img {
  width: 110px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.65);
  transform-origin: center;
  transition: var(--transition-fast);
  cursor: pointer;
}

.hero-thumbs img:hover {
  transform: translateY(-4px) scale(1.03);
}

/* SECTIONS */

.section {
  padding: 90px 16px;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 55%);
}

.section-header {
  max-width: var(--max-width);
  margin: 0 auto 36px;
  text-align: left;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.section-header p {
  color: var(--color-muted);
}

/* SERVICES */

.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: rgba(8, 12, 32, 0.95);
  border-radius: var(--radius-lg);
  padding: 20px 20px 22px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,134,255,0.18), transparent 55%);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* PORTFOLIO */

.portfolio-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(8,12,32,0.95);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.portfolio-item img {
  height: 190px;
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.portfolio-item figcaption {
  padding: 10px 14px 14px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

/* ROMANTIC */

.romantic-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.romantic-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.romantic-item img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.romantic-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.55);
  border-radius: 999px;
  font-size: 0.85rem;
}

.romantic-item:hover img {
  transform: scale(1.04);
}

/* GALLERY */

.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(8,12,32,0.9);
  box-shadow: 0 10px 26px rgba(0,0,0,0.6);
}

.gallery-item img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-note {
  max-width: var(--max-width);
  margin: 16px auto 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* MEDIA & SOCIAL */

.media-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: flex-start;
}

.ratio-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.12);
}

.ratio-16x9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.social-wrapper {
  background: rgba(8, 12, 32, 0.96);
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
}

.social-wrapper h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.social-wrapper p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.fb-embed-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 12px;
}

.fb-embed-fallback img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.fb-iframe iframe {
  border-radius: var(--radius-md);
}

/* CONTACT */

.section-contact {
  background: radial-gradient(circle at top, rgba(0,134,255,0.18), transparent 55%);
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 28px;
}

.contact-form {
  background: rgba(8, 12, 32, 0.98);
  padding: 24px 22px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 14px;
}

label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

input, select, textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(4, 7, 20, 0.95);
  color: var(--color-light);
  font-size: 0.9rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(0,134,255,0.5);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.contact-info {
  padding: 18px 0;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.9rem;
}

.contact-info li {
  margin-bottom: 6px;
  color: var(--color-muted);
}

.contact-info a {
  color: var(--color-light);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
}

.map-placeholder {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255,255,255,0.2);
  padding: 18px 16px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* FOOTER */

.footer {
  padding: 24px 16px 32px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  background: #020309;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer a {
  color: var(--color-light);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
}

/* FLOATING BUTTONS */

.whatsapp-float,
.call-float {
  position: fixed;
  right: 16px;
  z-index: 60;
}

.whatsapp-float {
  bottom: 80px;
}

.call-float {
  bottom: 22px;
}

.whatsapp-float a,
.call-float a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #25d366, #128c7e);
  color: white;
  box-shadow: 0 12px 30px rgba(0,0,0,0.8);
  font-size: 26px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.call-float a {
  background: radial-gradient(circle at 30% 30%, #ff7a00, #ff3b3b);
  font-size: 24px;
}

.whatsapp-float a:hover,
.call-float a:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.95);
}

/* LIGHTBOX */

.lightbox {
  display: none;
  position: fixed;
  z-index: 70;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: 5% auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.9);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 22px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .navbar {
    border-radius: 20px;
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--nav-height) - 10px);
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: var(--max-width);
    flex-direction: column;
    background: rgba(5, 8, 22, 0.96);
    border-radius: 18px;
    padding: 12px 16px 14px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    margin: 2px 0;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 30px;
  }

  .hero-media {
    margin-top: 16px;
  }

  .hero-thumbs {
    position: static;
    margin-top: 12px;
  }

  .hero-thumbs img {
    width: 30%;
    height: 80px;
  }

  .services-grid,
  .portfolio-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .romantic-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 60px;
  }

  .navbar {
    padding-inline: 12px;
    margin-top: 10px;
  }

  .section {
    padding-block: 70px;
  }

  .services-grid,
  .portfolio-grid,
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }
}
