/* ==========================================================================
   Sai Sau Udaipur — Coming Soon Page Styles
   Aesthetic: Ultra-Luxury Heritage Hospitality, Udaipur Grandeur
   ========================================================================== */

:root {
  --font-serif-royal: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-serif-poetic: 'Cormorant Garamond', Garamond, 'Palatino Linotype', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Royal Udaipur Palette */
  --bg-dark: #060910;
  --bg-deep: #090e17;
  --card-bg: rgba(10, 15, 25, 0.68);
  --card-border: rgba(223, 177, 91, 0.28);
  --card-border-hover: rgba(223, 177, 91, 0.55);

  /* Gold Gradients & Tones */
  --gold-primary: #dfb15b;
  --gold-light: #fbeac4;
  --gold-rich: #c59837;
  --gold-deep: #8f6a1e;
  --gold-glow: rgba(223, 177, 91, 0.22);
  --gold-glow-subtle: rgba(223, 177, 91, 0.1);

  /* Text Colors */
  --text-primary: #fcf9f2;
  --text-secondary: #d5d9e2;
  --text-muted: #8e98a9;
  --text-gold: #e2ba6a;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

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

html {
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

/* ==========================================================================
   Background & Ambient Visual Layers
   ========================================================================== */

#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.bg-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  inset: -20px;
  background-image: url('assets/images/udaipur.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.8) contrast(1.05) saturate(1.08);
  transform: scale(1.03);
  animation: gentlePan 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes gentlePan {
  0% {
    transform: scale(1.03) translate(0, 0);
  }
  50% {
    transform: scale(1.06) translate(-8px, -5px);
  }
  100% {
    transform: scale(1.04) translate(6px, -3px);
  }
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(6, 9, 16, 0.38) 0%,
    rgba(6, 9, 16, 0.68) 60%,
    rgba(4, 6, 11, 0.88) 100%
  );
}

.bg-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(223, 177, 91, 0.12) 0%,
    rgba(223, 177, 91, 0.04) 45%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(40px);
}

/* ==========================================================================
   Page Layout & Container
   ========================================================================== */

.page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ==========================================================================
   Brand Header & Royal Crest
   ========================================================================== */

.brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.royal-crest {
  width: 110px;
  height: 82px;
  margin-bottom: 1.25rem;
  position: relative;
  filter: drop-shadow(0 4px 16px rgba(223, 177, 91, 0.35));
}

.crest-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-brand {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-gold);
  opacity: 0.9;
  margin-bottom: 0.4rem;
}

.brand-title {
  font-family: var(--font-serif-royal);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.1;
  text-indent: 0.22em; /* Centers letter-spaced text optically */
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--gold-light) 30%,
    var(--gold-primary) 65%,
    var(--gold-rich) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(223, 177, 91, 0.3));
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  width: 100%;
  max-width: 280px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(223, 177, 91, 0.45),
    transparent
  );
}

.city-name {
  font-family: var(--font-serif-royal);
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  font-weight: 500;
  color: var(--gold-light);
  opacity: 0.9;
}

/* ==========================================================================
   Central Content Card (Glassmorphic)
   ========================================================================== */

.content-card {
  position: relative;
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 45px var(--gold-glow-subtle),
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 0 20px rgba(223, 177, 91, 0.05);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
  transition: var(--transition-smooth);
}

.content-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.7),
    0 0 55px var(--gold-glow),
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    inset 0 0 25px rgba(223, 177, 91, 0.08);
}

/* Card Decorative Diamonds */
.card-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-ornament .diamond {
  width: 7px;
  height: 7px;
  background: var(--gold-primary);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--gold-primary);
}

.card-ornament::before,
.card-ornament::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 177, 91, 0.45));
}

.card-ornament::after {
  transform: scaleX(-1);
}

.top-ornament {
  margin-bottom: 1.5rem;
}

.bottom-ornament {
  margin-top: 2rem;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(223, 177, 91, 0.08);
  border: 1px solid rgba(223, 177, 91, 0.35);
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulseDot 2.2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
    box-shadow: 0 0 6px var(--gold-primary);
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 14px var(--gold-light);
  }
}

.badge-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-light);
}

/* Headings & Text */
.announcement-heading {
  font-family: var(--font-serif-poetic);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.announcement-text {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 2vw, 1.02rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

/* ==========================================================================
   Exclusive Email Box (Sole Contact Channel)
   ========================================================================== */

.inquiry-box {
  background: rgba(14, 21, 33, 0.6);
  border: 1px solid rgba(223, 177, 91, 0.22);
  border-radius: 16px;
  padding: 1.85rem 2rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
}

.inquiry-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-primary),
    transparent
  );
  opacity: 0.6;
}

.inquiry-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.email-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 19, 0.75);
  border: 1px solid rgba(223, 177, 91, 0.35);
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  transition: var(--transition-fast);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.email-wrapper:hover,
.email-wrapper:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 22px rgba(223, 177, 91, 0.22);
}

.email-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-light);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2.8vw, 1.22rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  flex: 1;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.email-link:hover {
  color: #ffffff;
}

.email-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.email-link:hover .email-icon {
  transform: translateY(-2px) scale(1.08);
}

.email-text {
  word-break: break-all;
}

/* Copy Button & Interactive Tooltip */
.copy-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 177, 91, 0.12);
  border: 1px solid rgba(223, 177, 91, 0.4);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.copy-btn:hover {
  background: rgba(223, 177, 91, 0.25);
  color: #ffffff;
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

.copy-btn:active {
  transform: translateY(1px);
}

.copy-icon {
  width: 20px;
  height: 20px;
}

.copy-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 50%;
  transform: translateX(50%) translateY(4px);
  background: #111723;
  color: var(--gold-light);
  border: 1px solid rgba(223, 177, 91, 0.4);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.copy-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #111723 transparent transparent transparent;
}

.copy-btn:hover .copy-tooltip,
.copy-btn:focus .copy-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}

.copy-btn.copied .copy-tooltip {
  opacity: 1;
  visibility: visible;
  background: #192738;
  color: #7ef19e;
  border-color: #3ecf8e;
}

.inquiry-note {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.page-footer {
  margin-top: 2.25rem;
  animation: fadeIn 1.4s ease 0.4s both;
}

.copyright {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 640px) {
  .page-wrapper {
    padding: 1.75rem 1rem;
  }

  .content-card {
    padding: 2.25rem 1.4rem;
    border-radius: 16px;
  }

  .royal-crest {
    width: 90px;
    height: 68px;
    margin-bottom: 1rem;
  }

  .brand-title {
    font-size: 2.1rem;
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }

  .announcement-heading {
    font-size: 1.6rem;
  }

  .inquiry-box {
    padding: 1.4rem 1.1rem;
  }

  .email-wrapper {
    flex-direction: row;
    padding: 0.4rem;
  }

  .email-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.92rem;
  }

  .copy-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 380px) {
  .email-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .email-link {
    width: 100%;
    justify-content: center;
  }

  .copy-btn {
    width: 100%;
    height: 36px;
  }

  .copy-tooltip {
    display: none;
  }
}
