/* Santa for Hire - Modern Cosy Design */

:root {
  --festive-red: #c41e3a;
  --festive-green: #165b33;
  --warm-cream: #fef9f3;
  --gold: #d4af37;
  --dark-text: #2c2c2c;
  --light-text: #f8f8f8;
  --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: "Georgia", "Baskerville", serif;
  line-height: 1.6;
  color: var(--dark-text);
  background: linear-gradient(135deg, var(--warm-cream) 0%, #fff5e6 100%);
  min-height: 100vh;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--festive-red) 0%, #a01628 100%);
  color: var(--light-text);
  padding: 1rem 0;
  box-shadow: 0 4px 6px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  text-align: center;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}

.phone {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.phone:hover {
  color: var(--warm-cream);
}

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

.logo h1 {
  font-size: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo p {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.9;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.44rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--light-text);
  cursor: pointer;
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--festive-green) 0%, #0f3d23 100%);
  color: var(--light-text);
  padding: 4rem 2rem;
  border-radius: 0 0 12px 12px;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 8px 16px var(--shadow);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin: 1rem auto;
}

.hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 1rem auto;
  line-height: 1.8;
}

/* Content Cards */
.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px var(--shadow);
  margin-bottom: 2rem;
  border-left: 4px solid var(--festive-red);
}

.card h3 {
  color: var(--festive-red);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.card h4 {
  color: var(--festive-green);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.card ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.card li {
  margin-bottom: 0.5rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px var(--shadow);
}

.service-item h3 {
  color: var(--festive-red);
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.call-to-action {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pricing Table */
.pricing-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px var(--shadow);
  margin: 2rem 0;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: var(--festive-green);
  color: var(--light-text);
  padding: 1rem;
  text-align: left;
}

.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-table tr:hover {
  background: var(--warm-cream);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--festive-red);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px var(--shadow);
}

.btn:hover {
  background: var(--festive-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px var(--shadow);
}

.btn-secondary {
  background: var(--festive-green);
}

.btn-secondary:hover {
  background: var(--festive-red);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--festive-green);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, var(--festive-green) 0%, #0f3d23 100%);
  color: var(--light-text);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Highlight Box */
.highlight {
  background: linear-gradient(135deg, var(--gold) 0%, #c99a2e 100%);
  color: var(--dark-text);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 6px var(--shadow);
}

.highlight strong {
  color: var(--festive-red);
}

.call-to-action {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-main {
    flex-direction: column;
    text-align: center;
  }

  /* nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  } */

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero .tagline {
    font-size: 1.3rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
    margin-top: 1rem;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    text-align: center;
  }

  nav ul.active {
    display: flex;
  }
}

/* Festive Accents */
.snowflake {
  display: inline-block;
  color: var(--gold);
  margin: 0 0.5rem;
}

/* Blockquotes */
blockquote {
  background: var(--warm-cream);
  /* border-left: 4px solid var(--festive-red); */
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-style: italic;
  position: relative;
}

blockquote p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

blockquote footer {
  font-style: normal;
  font-weight: 600;
  text-align: right;
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--gold);
  border-radius: 0 5px 5px 5px;
}

blockquote footer::before {
  content: "— ";
}

/* Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  nav {
    display: none;
  }

  body {
    background: white;
  }

  .card,
  .hero {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}