:root {
      /* Color Palette */
      --primary-blue: #1575BB;
      /* Alps Blue */
      --accent-green: #8EC040;
      /* Alps Green */
      --accent-green-hover: #9cd246;
      --text-light: #ffffff;
      --text-muted: #cbd5e1;
      --bg-dark: #07192A;

      /* Fonts */
      --font-heading: 'Lexend', sans-serif;
      --font-body: 'Inter', sans-serif;

      /* Spacing */
      --spacing-1: 0.5rem;
      --spacing-2: 1rem;
      --spacing-3: 1.5rem;
      --spacing-4: 2rem;
      --spacing-6: 3rem;
      --spacing-8: 4rem;
      --spacing-12: 6rem;
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

body {
      font-family: var(--font-body);
      background-color: var(--bg-dark);
      color: var(--text-light);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
      position: relative;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
}

/* Background Setup */
body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* Luxury hotel image placeholder */
      background-image: url('bg.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      z-index: -2;
}

.background-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(7, 25, 42, 0.95) 0%, rgba(21, 117, 187, 0.85) 100%);
      backdrop-filter: blur(4px);
      z-index: -1;
}

/* Container */
.container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--spacing-4);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      z-index: 1;
}

/* Header */
header {
      padding-top: var(--spacing-2);
}

.logo {
      text-align: left;
      display: inline-block;
      border-left: 3px solid var(--accent-green);
      padding-left: var(--spacing-3);
      animation: fadeDown 1s ease-out;
}

.logo h1 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      letter-spacing: 0.1em;
      font-weight: 700;
      color: var(--text-light);
      line-height: 1.1;
}

.logo p {
      font-family: var(--font-body);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--accent-green);
      margin-top: 0.25rem;
}

/* Main Content */
main {
      flex-grow: 1;
      display: flex;
      align-items: center;
      padding: var(--spacing-8) 0;
}

.content-wrapper {
      max-width: 700px;
}

.badge {
      display: inline-block;
      padding: 0.5rem 1rem;
      background-color: rgba(142, 192, 64, 0.1);
      border: 1px solid rgba(142, 192, 64, 0.3);
      color: var(--accent-green);
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: var(--spacing-4);
      animation: fadeInUp 1s ease-out 0.2s both;
}

.title {
      font-family: var(--font-heading);
      font-size: 4rem;
      line-height: 1.1;
      font-weight: 400;
      margin-bottom: var(--spacing-4);
      animation: fadeInUp 1s ease-out 0.4s both;
}

.subtitle {
      font-size: 1.125rem;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: var(--spacing-8);
      max-width: 600px;
      font-weight: 300;
      animation: fadeInUp 1s ease-out 0.6s both;
}

/* Notify Section */
.notify-section {
      animation: fadeInUp 1s ease-out 0.8s both;
}

.notify-text {
      font-size: 0.875rem;
      color: var(--text-light);
      margin-bottom: var(--spacing-2);
      font-weight: 500;
}

.notify-form {
      display: flex;
      gap: 1rem;
      max-width: 500px;
}

.notify-form input {
      flex-grow: 1;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 1rem 1.5rem;
      border-radius: 8px;
      color: var(--text-light);
      font-size: 1rem;
      font-family: var(--font-body);
      transition: all 0.3s ease;
      outline: none;
}

.notify-form input::placeholder {
      color: rgba(255, 255, 255, 0.4);
}

.notify-form input:focus {
      border-color: var(--accent-green);
      background: rgba(255, 255, 255, 0.1);
}

.notify-form button {
      background: var(--accent-green);
      color: var(--bg-dark);
      border: none;
      padding: 0 2rem;
      border-radius: 8px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
}

.notify-form button:hover {
      background: var(--accent-green-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(142, 192, 64, 0.2);
}

/* Footer */
footer {
      padding-bottom: var(--spacing-2);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      gap: var(--spacing-4);
      animation: fadeIn 1.5s ease-out 1s both;
}

.contact-info {
      display: flex;
      gap: var(--spacing-4);
}

.contact-info p {
      font-size: 0.875rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s ease;
}

.contact-info p i {
      color: var(--accent-green);
      font-size: 1.25rem;
}

.contact-info p:hover {
      color: var(--text-light);
}

.social-links {
      display: flex;
      gap: var(--spacing-3);
}

.social-links a {
      color: var(--text-muted);
      font-size: 1.5rem;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-decoration: none;
}

.social-links a:hover {
      color: var(--bg-dark);
      background: var(--accent-green);
      border-color: var(--accent-green);
      transform: translateY(-3px);
}

.copyright {
      flex-basis: 100%;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.3);
      margin-top: var(--spacing-4);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: var(--spacing-4);
}

/* Animations */
@keyframes fadeInUp {
      from {
            opacity: 0;
            transform: translateY(30px);
      }

      to {
            opacity: 1;
            transform: translateY(0);
      }
}

@keyframes fadeDown {
      from {
            opacity: 0;
            transform: translateY(-20px);
      }

      to {
            opacity: 1;
            transform: translateY(0);
      }
}

@keyframes fadeIn {
      from {
            opacity: 0;
      }

      to {
            opacity: 1;
      }
}

/* Responsive Design */
@media (max-width: 768px) {
      .container {
            padding: var(--spacing-3);
      }

      .title {
            font-size: 2.75rem;
      }

      .subtitle {
            font-size: 1rem;
      }

      .notify-form {
            flex-direction: column;
      }

      .notify-form button {
            padding: 1rem 2rem;
      }

      footer {
            flex-direction: column;
            align-items: flex-start;
            gap: var(--spacing-6);
      }

      .contact-info {
            flex-direction: column;
            gap: var(--spacing-2);
      }

      .copyright {
            margin-top: 0;
      }
}

@media (max-width: 480px) {
      .logo h1 {
            font-size: 2rem;
      }

      .title {
            font-size: 2.25rem;
      }
}