/*
Theme Name: The Cue Lounge
Theme URI: https://thecuelounge.in
Author: Noor Digital Marketing Services
Description: Custom landing page theme for The Cue Lounge.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
*/

:root {
  --bg-color: #111111;
  --text-color: #f0f0f0;
  --accent-red: #D32F2F;
  --accent-gold: #FBC02D;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-family: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 4rem 0;
}

/* Typography */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }

/* Buttons */
.btn {
  display: inline-block;
  background-color: #25D366; /* WhatsApp Green */
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-sticky {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (min-width: 768px) {
  .btn-sticky {
    display: none;
  }
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 2rem;
  background: radial-gradient(circle at top, rgba(211,47,47,0.1) 0%, transparent 50%);
}

.logo-placeholder {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Trust Bar */
.trust-bar {
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
}

/* About Section */
.about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  color: var(--accent-red);
}

.about p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

/* Offerings Grid */
.offerings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .offerings-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card .price {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--accent-red);
  font-size: 1.2rem;
}

/* Booking Steps */
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .booking-steps {
    flex-direction: row;
    justify-content: center;
  }
}

.step {
  flex: 1;
  text-align: center;
  background: var(--glass-bg);
  padding: 2rem;
  border-radius: 15px;
  position: relative;
}

.step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Location & Footer */
.location {
  text-align: center;
}

.address-block {
  margin: 2rem 0;
  font-size: 1.1rem;
  color: #ccc;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin: 2rem 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  background: #0a0a0a;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.copyright {
  color: #777;
  font-size: 0.9rem;
}
