/* ================= PREMIUM WHITE THEME - GLOBAL STYLESHEET ================= */

/* -------- THEME VARIABLES -------- */
:root {
  --accent: #C9A24D;              /* luxury gold */
  --muted: rgba(0,0,0,0.55);
  --text: #111111;
  --bg: #FAFAFA;
  --card-bg: #ffffff;
  --glass: rgba(255,255,255,0.8);
  --shadow-sm: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 14px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.15);
}

/* Optional theme variants */
:root[data-theme="ivory"] {
  --accent: #B89B5E;
  --bg: #F6F4F1;
}

:root[data-theme="platinum"] {
  --accent: #6B7280;
  --bg: #FFFFFF;
}

/* -------- BASE STYLES -------- */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, 'Segoe UI', Tahoma, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* -------- CONTAINER -------- */
.wrap {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

/* -------- BUTTONS -------- */
.btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 30px rgba(201,162,77,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201,162,77,0.45);
}

.btn-ghost {
  background: #ffffff;
  color: #333;
  border: 1px solid rgba(0,0,0,0.08);
}

.btn-ghost:hover {
  background: var(--bg);
  border-color: var(--accent);
}
/*
.coming-soon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: overlayFadeIn 0.6s ease;
}

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

.coming-soon-overlay-content {
  max-width: 520px;
  padding: 40px 32px;
}

.coming-soon-logo img {
  height: 80px;
  width: auto;
  margin: 0 auto 24px;
}

.coming-soon-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(201,162,77,0.4), 0 1px 6px rgba(255,255,255,0.8);
}

.coming-soon-subtitle {
  font-size: 1.15rem;
  color: #111;
  font-weight: 500;
  margin: 0 0 24px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(255,255,255,0.7);
}

.coming-soon-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.coming-soon-tagline {
  font-size: 0.95rem;
  color: #222;
  font-weight: 500;
  margin: 0 0 32px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(255,255,255,0.7);
}

.coming-soon-socials {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.coming-soon-socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  border: 1.5px solid rgba(201,162,77,0.3);
  font-size: 18px;
  transition: all 0.3s ease;
}

.coming-soon-socials a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201,162,77,0.3);
}

.navbar-premium .logo {
  pointer-events: none;
}

@media(max-width: 480px) {
  .coming-soon-title { font-size: 2rem; }
  .coming-soon-subtitle { font-size: 1rem; }
  .coming-soon-overlay-content { padding: 24px 20px; }
}*/

/* -------- CARDS -------- */
.card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  color: #555;
  font-weight: 600;
  font-size: 14px;
}

.price {
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
}

/* -------- GRID LAYOUTS -------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* -------- SECTION STYLES -------- */
section {
  padding: 56px 0;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-description {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 32px;
  font-size: 16px;
}

/* -------- PAGE HERO -------- */
.page-hero {
  height: 320px;
  background: url('../img/slider1.jpg') center/cover;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(131, 129, 119, 0.75));
  z-index: 1;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  color: var(--accent);
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* -------- FORMS -------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #f9fafb;
  color: #333;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201,162,77,0.1);
}

.form-control::placeholder {
  color: #888;
}

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

/* -------- UTILITY CLASSES -------- */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }

/* -------- ANIMATIONS -------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* -------- RESPONSIVE BREAKPOINTS -------- */

/* Tablets and below */
@media (max-width: 1024px) {
  .wrap {
    width: 94%;
  }
  
  .section-heading {
    font-size: 28px;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Mobile landscape and below */
@media (max-width: 768px) {
  .wrap {
    width: 95%;
  }
  
  section {
    padding: 40px 0;
  }
  
  .section-heading {
    font-size: 24px;
  }
  
  .page-hero {
    height: 240px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
  
  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* Mobile portrait */
@media (max-width: 520px) {
  .page-hero {
    height: 200px;
    border-radius: 8px;
  }
  
  .page-hero h1 {
    font-size: 26px;
  }
  
  .section-heading {
    font-size: 22px;
  }
  
  .grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .card {
    padding: 10px;
  }
  
  .btn {
    width: 100%;
    padding: 12px;
  }
}
