* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* PALETTE */
:root {
  --bg-main: #0a1a2f;
  --bg-deep: #00385a;
  --bg-soft: #6a90b4;

  --text-main: #f4f8ff;
  --text-soft: #c7d4e8;

  --glow-blue: rgba(120, 180, 255, 0.35);
}

/* BACKGROUND */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-main);
  min-height: 100vh;

  background: radial-gradient(
      circle at top,
      rgba(106, 144, 180, 0.25),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 56, 90, 0.35),
      transparent 30%
    ),
    linear-gradient(180deg, #06111f 0%, #0a1a2f 45%, #00385a 100%);
}

/* HEADER */
.header-strip {
  height: 80px;
  padding: 0 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  margin: 15px;
}

/* LOGO */
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.6px;

  color: #f4f8ff;

  text-shadow: 0 0 10px rgba(120, 180, 255, 0.15),
    0 0 20px rgba(120, 180, 255, 0.08);
}

/* NAV LINKS */
.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  font-size: 1.1rem;
  opacity: 0.85;

  color: var(--text-main);
  text-decoration: none;

  transition: 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
}

.contact-info {
  font-size: 0.9rem;
}

/* CAROUSEL */
.carousel-banner {
  position: relative;
  height: calc(100vh - 110px);

  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 600px;
}

/* CARDS */
.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;

  text-align: center;
  transition: all 0.7s ease;
}

/* IMAGES */
.carousel-card img {
  width: 240px;
  height: 340px;
  object-fit: cover;

  border-radius: 26px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 30px var(--glow-blue);
}

/* TEXT */
.carousel-card h2 {
  margin-top: 14px;
  font-size: 1.3rem;
}

.carousel-card p {
  margin: 8px auto 12px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.buttons a {
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;

  transition: 0.3s ease;
}

.buttons a:hover {
  background: rgba(120, 180, 255, 0.25);
}

/* POSITIONS */
.carousel-card.left {
  transform: translate(-170%, -50%) scale(0.8);
  opacity: 0.4;
  z-index: 1;
}

.carousel-card.center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
}

.carousel-card.right {
  transform: translate(70%, -50%) scale(0.8);
  opacity: 0.4;
  z-index: 1;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;

  cursor: pointer;
  z-index: 10;

  transition: 0.3s ease;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.arrow.left {
  left: 20px;
}
.arrow.right {
  right: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .carousel-card.left,
  .carousel-card.right {
    display: none;
  }

  .carousel-card.center {
    transform: translate(-50%, -50%) scale(1);
  }

  .header-strip {
    flex-direction: column;
    gap: 8px;
    height: auto;
    padding: 15px;
  }
}
