/* Design System - Diploma de Mestrado
   Academic, professional, elegant design
*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* CSS Variables */
:root {
  /* Background & Foreground */
  --background: 210 20% 98%;
  --foreground: 222 47% 11%;

  /* Card */
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;

  /* Popover */
  --popover: 0 0% 100%;
  --popover-foreground: 222 47% 11%;

  /* Primary - Deep Navy Blue */
  --primary: 222 47% 15%;
  --primary-foreground: 45 100% 96%;

  /* Secondary - Soft Blue Gray */
  --secondary: 210 25% 93%;
  --secondary-foreground: 222 47% 15%;

  /* Muted */
  --muted: 210 20% 94%;
  --muted-foreground: 215 16% 47%;

  /* Accent - Warm Gold */
  --accent: 38 92% 50%;
  --accent-foreground: 222 47% 11%;

  /* Destructive */
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;

  /* Border & Input */
  --border: 214 32% 91%;
  --input: 214 32% 91%;
  --ring: 222 47% 15%;

  /* Radius */
  --radius: 0.75rem;

  /* Custom Colors */
  --gold: 38 92% 50%;
  --gold-light: 45 100% 96%;
  --navy: 222 47% 15%;
  --navy-light: 222 30% 25%;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(222 47% 15%) 0%, hsl(222 30% 25%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(38 92% 50%) 0%, hsl(45 90% 55%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(222 47% 15%) 0%, hsl(222 35% 20%) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px hsl(222 47% 15% / 0.08);
  --shadow-md: 0 8px 24px -8px hsl(222 47% 15% / 0.12);
  --shadow-lg: 0 16px 48px -16px hsl(222 47% 15% / 0.16);
  --shadow-gold: 0 8px 32px -8px hsl(38 92% 50% / 0.3);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

header.scrolled {
  background-color: hsla(var(--card), 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}

header:not(.scrolled) .logo-icon {
  background-color: hsla(var(--primary-foreground), 0.2);
}

header.scrolled .logo-icon {
  background-color: hsl(var(--primary));
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary-foreground));
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s;
}

header:not(.scrolled) .logo-text {
  color: hsl(var(--primary-foreground));
}

header.scrolled .logo-text {
  color: hsl(var(--foreground));
}

/* Navigation */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

header:not(.scrolled) .nav-links a {
  color: hsl(var(--primary-foreground));
}

header.scrolled .nav-links a {
  color: hsl(var(--foreground));
}

.nav-links a:hover {
  color: hsl(var(--gold));
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

header:not(.scrolled) .mobile-menu-btn {
  color: hsl(var(--primary-foreground));
}

header.scrolled .mobile-menu-btn {
  color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu.open {
  display: block;
  max-height: 500px;
  opacity: 1;
}

.mobile-menu-content {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-content a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

header:not(.scrolled) .mobile-menu-content a {
  color: hsl(var(--primary-foreground));
}

header.scrolled .mobile-menu-content a {
  color: hsl(var(--foreground));
}

.mobile-menu-content a:hover {
  color: hsl(var(--gold));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: inherit;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  pointer-events: none;
}

.btn-default {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-md);
  padding: 0.625rem 1.25rem;
  height: 2.5rem;
}

.btn-default:hover {
  box-shadow: var(--shadow-lg);
  background-color: hsla(var(--primary), 0.9);
}

.btn-hero {
  background-color: hsl(var(--gold));
  color: hsl(var(--primary));
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  padding: 0.875rem 2.5rem;
  height: 3.5rem;
  font-size: 1.125rem;
}

.btn-hero:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.btn-hero:active {
  transform: scale(0.98);
}

.btn-hero-outline {
  border: 2px solid hsla(var(--primary-foreground), 0.3);
  background-color: transparent;
  color: hsl(var(--primary-foreground));
  padding: 0.875rem 2.5rem;
  height: 3.5rem;
  font-size: 1.125rem;
}

.btn-hero-outline:hover {
  background-color: hsla(var(--primary-foreground), 0.1);
  border-color: hsla(var(--primary-foreground), 0.5);
}

.btn-gold {
  background-color: hsl(var(--gold));
  color: hsl(var(--primary));
  font-weight: 500;
  box-shadow: var(--shadow-md);
  padding: 0.625rem 1.25rem;
  height: 2.5rem;
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.btn-outline {
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 2rem;
  height: 3rem;
  font-size: 1rem;
}

.btn-outline:hover {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-lg {
  padding: 0.75rem 2rem;
  height: 3rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 0.875rem 2.5rem;
  height: 3.5rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, hsl(var(--background)), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(var(--primary-foreground), 0.15);
  border: 1px solid hsla(var(--primary-foreground), 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: hsl(var(--gold));
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-badge-text {
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 500;
}

.hero h1 {
  font-size: 2.25rem;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground));
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: hsla(var(--primary-foreground), 0.05);
  border: 1px solid hsla(var(--primary-foreground), 0.1);
  backdrop-filter: blur(4px);
}

.hero-stat-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--gold));
  margin-bottom: 0.75rem;
}

.hero-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .hero-stat-value {
    font-size: 2.25rem;
  }
}

.hero-stat-label {
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  color: hsl(var(--gold));
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
}

/* Cards */
.card {
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-content {
  padding: 1.5rem;
}

/* Courses Grid */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.course-card {
  height: 100%;
}

.course-card.featured {
  border-color: hsla(var(--gold), 0.3);
  background: linear-gradient(to bottom right, hsl(var(--card)), hsla(var(--gold), 0.05));
}

.course-badge {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.course-badge-popular {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: hsla(var(--gold), 0.1);
  color: hsl(var(--gold));
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.course-badge-popular svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: hsl(var(--gold));
}

.course-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.course-card:hover .course-title {
  color: hsl(var(--gold));
}

.course-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.course-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.course-area {
  font-size: 0.75rem;
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
}

.course-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.course-stat {
  text-align: center;
  padding: 0.5rem;
  background-color: hsla(var(--secondary), 0.5);
  border-radius: 0.5rem;
}

.course-stat-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
  margin: 0 auto 0.25rem;
}

.course-stat-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  border-color: hsla(var(--gold), 0.3);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsla(var(--gold), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s;
}

.benefit-card:hover .benefit-icon {
  background-color: hsla(var(--gold), 0.2);
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--gold));
}

.benefit-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.benefit-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.testimonial-card {
  height: 100%;
}

.testimonial-quote {
  width: 2.5rem;
  height: 2.5rem;
  color: hsla(var(--gold), 0.2);
  margin-bottom: 1rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 1rem;
  height: 1rem;
  fill: hsl(var(--gold));
  color: hsl(var(--gold));
}

.testimonial-content {
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.testimonial-role {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* FAQ Accordion */
.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-item {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s;
}

.faq-item.open {
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq-trigger:hover {
  color: hsl(var(--gold));
}

.faq-trigger svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, padding 0.2s ease-out;
  padding: 0 0 0 0;
}

.faq-item.open .faq-content {
  max-height: 500px;
  padding: 0 0 1.25rem 0;
}

.faq-answer {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 8rem 0;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.cta-section::before {
  background: radial-gradient(circle at 25% 25%, hsl(var(--gold)) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, hsl(var(--gold)) 0%, transparent 50%);
  filter: blur(3rem);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(var(--gold), 0.2);
  border: 1px solid hsla(var(--gold), 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.cta-badge svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--gold));
}

.cta-badge-text {
  color: hsl(var(--gold));
  font-size: 0.875rem;
  font-weight: 500;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  color: hsl(var(--primary-foreground));
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  opacity: 0.9;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-trust-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--gold));
}

/* Footer */
footer {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.footer-main {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.footer-logo-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: hsla(var(--primary-foreground), 0.1);
}

.footer-logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary-foreground));
}

.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-description {
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
  max-width: 24rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  opacity: 0.85;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--gold));
  flex-shrink: 0;
}

.footer-column h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
  opacity: 0.85;
}

.footer-links a:hover {
  color: hsl(var(--gold));
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid hsla(var(--primary-foreground), 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsla(var(--primary-foreground), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0.85;
}

.footer-social a:hover {
  background-color: hsl(var(--gold));
  color: hsl(var(--primary));
}

.footer-social a svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Background Colors */
.bg-secondary-light {
  background-color: hsla(var(--secondary), 0.3);
}

.bg-background {
  background-color: hsl(var(--background));
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-12 {
  margin-top: 3rem;
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 1.875rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}

