/* Ambition by Design - Main Stylesheet */

:root {
  --cream: #F5F1ED;
  --beige: #E8DFD8;
  --rose-gold: #B76E79;
  --navy: #2C2E43;
  --dark-brown: #4A3933;
  --light-pink: #F4E4E6;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--navy);
  background-color: var(--cream);
  line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  color: var(--navy);
}

h2 {
  font-size: 2.5rem;
  color: var(--navy);
}

h3 {
  font-size: 1.8rem;
  color: var(--rose-gold);
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark-brown);
}

a {
  color: var(--rose-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--navy);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul li a {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--rose-gold);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-pink) 0%, var(--beige) 100%);
  padding: 8rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--dark-brown);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--rose-gold);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(183, 110, 121, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* Sections */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--dark-brown);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Cards */
.card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
}

/* Service Cards */
.service-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(183, 110, 121, 0.2);
}

.service-card .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--rose-gold);
  margin: 1.5rem 0;
}

.service-card .beta-price {
  font-size: 1.2rem;
  color: var(--navy);
  background-color: var(--light-pink);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.service-card ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--beige);
  font-size: 1rem;
}

.service-card ul li:before {
  content: "✓ ";
  color: var(--rose-gold);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* About Section */
.about-image {
  border-radius: 20px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* FAQ Section */
.faq-item {
  background-color: var(--white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.faq-item h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-info {
  text-align: center;
  padding: 3rem;
  background-color: var(--light-pink);
  border-radius: 20px;
}

.contact-info a {
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  margin: 1rem 0;
}

/* Footer */
footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  color: var(--beige);
  margin-bottom: 1rem;
}

footer a {
  color: var(--rose-gold);
}

footer a:hover {
  color: var(--white);
}

.social-links {
  margin: 2rem 0;
}

.social-links a {
  margin: 0 1rem;
  font-size: 1.5rem;
}

/* Calendly Embed */
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  border-radius: 15px;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 3rem 1.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.highlight {
  color: var(--rose-gold);
  font-weight: 600;
}
