:root {
  --primary-color: #2b2b2b;
  --secondary-color: #B76E79; /* Rose Gold / Pink */
  --accent-color: #D4AF37; /* Gold */
  --text-main: #333333;
  --text-muted: #555555;
  
  /* Glassmorphism Variables - Extremely Clear */
  --glass-bg: rgba(255, 255, 255, 0.15); 
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: blur(25px); 
  --glass-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.15);

  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

html {
  /* This scales down all 'rem' values to 75% of their original size, creating the "zoomed out" effect */
  font-size: 75%; 
}

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

body {
  font-family: var(--font-main);
  background: linear-gradient(-45deg, #ffffff, #fdf4f6, #fbf0f2, #ffffff);
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Removed fixed font-size from body so it inherits the 75% scaling properly */
  min-height: 100vh;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
}

h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 1rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.6rem; margin-bottom: 1rem; }
p { font-size: 1.1rem; margin-bottom: 1.5rem; }

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

.highlight {
  background: linear-gradient(135deg, var(--secondary-color), #d18a96);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Top Bar Details */
.top-bar {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 5%;
  display: flex;
  justify-content: space-between;
  font-size: 1rem; /* Scaled relative to new html root */
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 1001;
}

.top-bar span { margin-right: 20px; }
.top-bar i { color: var(--secondary-color); margin-right: 5px; }

/* Glass Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

header:hover { background: rgba(255, 255, 255, 0.7); }

.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-container img { height: 45px; width: auto; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.logo-container:hover img { transform: scale(1.1) rotate(5deg); }

.logo-text {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  display: flex; flex-direction: column; line-height: 1.1;
  text-transform: uppercase; letter-spacing: 1px; color: var(--primary-color);
}
.logo-sub { font-size: 0.8rem; color: var(--secondary-color); letter-spacing: 2px; font-weight: 600; }

nav ul { list-style: none; display: flex; gap: 2rem; }
nav a {
  font-weight: 600; font-size: 1.1rem; position: relative;
  text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted);
}
nav a:hover, nav a.active { color: var(--secondary-color); }
nav a::after {
  content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
  background: var(--secondary-color); transition: width 0.3s ease;
}
nav a:hover::after, nav a.active::after { width: 100%; }

/* Big Buttons */
.cta-btn {
  background: linear-gradient(135deg, var(--secondary-color), #d18a96);
  color: white; padding: 1rem 2.2rem; border-radius: 50px;
  font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none; cursor: pointer; display: inline-block;
  box-shadow: 0 8px 15px rgba(183, 110, 121, 0.25);
}
.cta-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 20px rgba(183, 110, 121, 0.4); color: white; }
.cta-btn.secondary { background: rgba(255,255,255,0.6); color: var(--secondary-color); border: 2px solid var(--secondary-color); box-shadow: none; }
.cta-btn.secondary:hover { background: white; color: var(--secondary-color); box-shadow: 0 8px 15px rgba(183, 110, 121, 0.1); }
.cta-btn.massive { font-size: 1.3rem; padding: 1.2rem 3rem; border-radius: 100px; animation: pulseGlow 2s infinite alternate; }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(183, 110, 121, 0.3); }
  100% { box-shadow: 0 0 25px rgba(183, 110, 121, 0.6); }
}

/* Glass Containers (Cards/Blocks) */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.glass-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Floating Full Height Sections with Background Image */
.hero, .floating-section {
  position: relative;
  min-height: 90vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 5%; 
  overflow: hidden;
}

.hero-bg, .floating-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; opacity: 0.15;
}

.hero-overlay, .floating-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1), rgba(255,255,255,0.4));
  z-index: -1;
}

.hero-content, .floating-container {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* Regular Sections */
section.standard-section { padding: 6rem 5%; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title p { max-width: 700px; margin: 0 auto; color: var(--text-muted); font-size: 1.2rem; }

/* Content Blocks */
.content-block { display: flex; align-items: center; gap: 4rem; margin-bottom: 4rem; }
.content-block:nth-child(even) { flex-direction: row-reverse; }
.content-img { flex: 1; position: relative; transition: transform 0.4s ease; }
.content-img:hover { transform: scale(1.02); }
.content-img img {
  width: 100%; height: auto; object-fit: cover; border-radius: 20px;
  box-shadow: var(--glass-shadow); border: 4px solid white;
}
.content-text { flex: 1.2; }

.tagline {
  color: var(--secondary-color); text-transform: uppercase; letter-spacing: 2px;
  font-weight: 700; margin-bottom: 0.8rem; display: block; font-size: 1rem;
}
.content-text ul { list-style-type: none; margin-top: 1.5rem; }
.content-text li {
  margin-bottom: 0.8rem; padding-left: 1.8rem; position: relative;
  color: var(--text-main); font-weight: 600; transition: transform 0.2s ease;
}
.content-text li:hover { transform: translateX(5px); color: var(--secondary-color); }
.content-text li::before {
  content: '✦'; position: absolute; left: 0; color: var(--secondary-color); font-size: 1.2rem; line-height: 1;
}

/* Grids */
.glass-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.glass-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

/* In-line Images for body content */
.inline-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-card { text-align: center; padding: 3rem 2rem; background: rgba(255, 255, 255, 0.4); border: 1px solid var(--glass-border); border-radius: 20px;}
.price-card.hero-card {
  background: rgba(255, 255, 255, 0.6); border-color: var(--secondary-color);
  transform: scale(1.05); box-shadow: 0 15px 30px rgba(183, 110, 121, 0.1);
}
.price-card.hero-card:hover { transform: scale(1.05) translateY(-5px); }
.price {
  font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 1rem 0;
}

/* Contact Grid specific */
.contact-info-list li { display: flex; flex-direction: column; margin-bottom: 1.5rem; padding: 0; }
.contact-info-list li::before { content: none; }
.contact-info-list li:hover { transform: none; color: inherit; }
.contact-info-list strong {
  color: var(--secondary-color); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem;
}
.contact-info-list span { font-size: 1.3rem; color: var(--primary-color); font-weight: 600; }

/* Footer */
footer {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(20px);
  padding: 4rem 5% 2rem; border-top: 1px solid rgba(183, 110, 121, 0.2);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; }
.footer-col h3 { font-size: 1.3rem; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary-color); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; color: var(--text-muted); font-size: 1.1rem; }
.footer-col ul li strong { color: var(--primary-color); }
.footer-col a:hover { color: var(--secondary-color); }
.footer-bottom {
  text-align: center; padding-top: 2.5rem; border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 3rem; display: flex; flex-direction: column; gap: 5px;
}
.dev-credit { font-weight: 700; color: var(--secondary-color); font-size: 1rem; letter-spacing: 2px; }

/* Responsive adjustments for new layout */
@media (max-width: 1024px) {
  html { font-size: 70%; }
  h1 { font-size: 2.5rem; } h2 { font-size: 2rem; }
  .content-block, .content-block:nth-child(even), .glass-grid-2 { flex-direction: column; gap: 2.5rem; }
  .price-card.hero-card { transform: scale(1); }
  .hero, .floating-section { padding: 8rem 5%; }
  .glass-panel { padding: 2rem; }
}
@media (max-width: 768px) {
  html { font-size: 65%; }
  .top-bar { display: none; }
  nav ul { display: none; }
  header { padding: 1rem 5%; }
  h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; }
  .hero, .floating-section { padding: 6rem 5%; min-height: auto; }
  section.standard-section { padding: 4rem 5%; }
  .cta-btn, .cta-btn.massive { font-size: 0.95rem; padding: 1rem 2rem; }
}
