/* Avneli Hotel Sydney — Main Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --bg-burgundy: #2a0f18;
  --bg-brown: #3d1f1a;
  --bg-brown-light: #4a2820;
  --text-white: #f5f0ec;
  --text-muted: #c9bdb5;
  --neon-red: #ff2d55;
  --neon-red-glow: #ff4d6d;
  --accent-red: #c41e3a;
  --gradient-border: linear-gradient(135deg, #ff2d55, #c41e3a, #ff6b81, #ff2d55);
  --shadow-deep: 0 12px 40px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(255, 45, 85, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --header-height: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-burgundy);
  color: var(--text-white);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--neon-red);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--neon-red-glow);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); margin-bottom: 0.75rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gradient-border);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* Drop cap */
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 0.85;
  padding-right: 0.12em;
  padding-top: 0.05em;
  color: #d4af37;
  font-weight: 700;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-brown);
  border-bottom: 2px solid var(--neon-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.header-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--neon-red);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.header-contact p,
.header-contact a,
.header-contact span {
  color: var(--text-white);
  font-size: 0.85rem;
  white-space: nowrap;
  margin: 0;
}

.header-contact a:hover {
  color: var(--neon-red);
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 2px solid var(--neon-red);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 10px;
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-red);
  transition: var(--transition);
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-brown);
  padding: 2rem 1.5rem;
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mobile-menu nav a {
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg-brown-light);
}

.mobile-menu-contact p,
.mobile-menu-contact a {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* ===== BANNER ===== */
.page-banner {
  position: relative;
  width: 100%;
  height: clamp(280px, 45vw, 500px);
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42, 15, 24, 0.55), rgba(42, 15, 24, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner h1 {
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  padding: 0 1rem;
}

/* ===== STRENGTHS (Staggered Cards) ===== */
.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 1rem 0;
}

.strength-card {
  flex: 1 1 220px;
  max-width: 280px;
  background: var(--bg-brown);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  position: relative;
  box-shadow: var(--shadow-deep);
  transition: transform var(--transition);
}

.strength-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: var(--gradient-border);
  z-index: -1;
}

.strength-card:nth-child(1) { transform: translateY(-20px); }
.strength-card:nth-child(2) { transform: translateY(10px); }
.strength-card:nth-child(3) { transform: translateY(-8px); }
.strength-card:nth-child(4) { transform: translateY(16px); }

.strength-card:hover {
  transform: translateY(-4px) !important;
}

.strength-card h3 {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.75rem;
}

.strength-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== SERVICE / ROOM CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-brown);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--neon-red);
  transform: translateY(-4px);
}

.card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--neon-red);
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: transparent;
  border: 2px solid var(--neon-red);
  color: var(--neon-red);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  background: var(--neon-red);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.4);
}

.btn-filled {
  background: var(--neon-red);
  color: var(--text-white);
}

.btn-filled:hover {
  background: var(--neon-red-glow);
}

/* ===== ADVANTAGES / STATS ===== */
.advantages-block {
  background: var(--bg-brown);
  border-radius: 16px;
  padding: 3rem 2rem;
  border-left: 4px solid var(--neon-red);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--neon-red);
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ===== FORMS ===== */
.form-section {
  background: var(--bg-brown);
  border-radius: 16px;
  padding: 3rem 2rem;
  border: 2px solid var(--bg-brown-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-burgundy);
  border: 1px solid var(--bg-brown-light);
  border-radius: 6px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-red);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background: rgba(46, 125, 50, 0.25);
  border: 1px solid #4caf50;
  color: #a5d6a7;
}

.form-message.error {
  display: block;
  background: rgba(198, 40, 40, 0.25);
  border: 1px solid var(--accent-red);
  color: #ef9a9a;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-brown);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--bg-brown-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--neon-red);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--neon-red);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-image {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--neon-red);
}

.mission-sticks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.mission-stick {
  flex: 1 1 200px;
  background: var(--bg-brown);
  padding: 1.5rem;
  border-radius: 8px;
  border-top: 3px solid var(--neon-red);
  text-align: center;
}

.mission-stick h4 {
  font-family: var(--font-heading);
  color: var(--neon-red);
  margin-bottom: 0.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background: var(--neon-red);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 45, 85, 0.6);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--neon-red);
  font-weight: 700;
}

/* ===== SERVICES PAGE ===== */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.guarantee-item {
  background: var(--bg-brown);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 3px solid var(--neon-red);
}

.bonus-program {
  background: var(--bg-brown);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
}

.bonus-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.bonus-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-burgundy);
  border: 2px solid var(--neon-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.advantages-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.advantages-list li {
  background: var(--bg-brown);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  padding-left: 2.5rem;
  position: relative;
}

.advantages-list li::before {
  content: '✦';
  position: absolute;
  left: 1rem;
  color: var(--neon-red);
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-block {
  background: var(--bg-brown);
  padding: 2rem;
  border-radius: 12px;
}

.contact-info-block p,
.contact-info-block a {
  margin-bottom: 1rem;
  display: block;
  color: var(--text-muted);
}

.contact-info-block a {
  color: var(--neon-red);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-brown);
  border-top: 2px solid var(--neon-red);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-logo img {
  height: 56px;
  width: 56px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-white);
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer-contact p,
.footer-contact a {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
  white-space: nowrap;
}

.footer-contact a:hover {
  color: var(--neon-red);
}

.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--bg-brown-light);
  padding-top: 1.5rem;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-legal-links a:hover {
  color: var(--neon-red);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--neon-red);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0 0 1rem 1.5rem;
  color: var(--text-muted);
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-header {
  background: var(--bg-brown);
  padding: 2rem 0;
  text-align: center;
  border-bottom: 2px solid var(--neon-red);
}

/* ===== TEXT BLOCKS ===== */
.text-block {
  max-width: 900px;
  margin: 0 auto;
}

.text-block p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.content-block {
  background: var(--bg-brown);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.content-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-nav,
  .header-contact {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .strength-card:nth-child(n) {
    transform: none;
  }

  .about-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 2.5rem 0;
  }

  .strengths-grid {
    flex-direction: column;
    align-items: center;
  }

  .strength-card {
    max-width: 100%;
  }

  .mission-sticks {
    flex-direction: column;
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== CASINO PAGE ===== */
.casino-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.casino-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.casino-row.reverse .casino-row-image {
  order: 2;
}

.casino-row.reverse .casino-row-text {
  order: 1;
}

.casino-row-image {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #d4af37;
  box-shadow: var(--shadow-deep);
}

.casino-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casino-row-text h3 {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.casino-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.casino-info-card {
  background: var(--bg-brown);
  padding: 1.75rem;
  border-radius: 10px;
  text-align: center;
  border-bottom: 3px solid #d4af37;
}

.casino-info-card h4 {
  font-family: var(--font-heading);
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.casino-info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.casino-vip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-brown);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid #d4af37;
}

.casino-vip-image {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
}

.casino-vip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .casino-row,
  .casino-vip {
    grid-template-columns: 1fr;
  }

  .casino-row.reverse .casino-row-image,
  .casino-row.reverse .casino-row-text {
    order: unset;
  }
}
