/* ============================================
   ARMONIA ICELAND - LANDING PAGE STYLES
   
   HOW TO EDIT:
   - Colors are written as hex codes like #C8A96E (gold)
   - Change any color by replacing the hex code
   - Font sizes use px or rem units
   - Spacing uses px units
   
   KEY COLORS:
   - Gold accent:    #C8A96E
   - Dark blue:      #1B3A4B
   - Teal green:     #4A7C6F
   - Light cream:    #FAF8F5
   - Dark navy:      #1A1A2E
   - Card dark:      #252547
   - Body text:      #6B7280
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ---- NAVIGATION ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  color: #2d1b8e;
}

.brand-sub {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: #c0390a;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #C8A96E;
}

.nav-cta {
  background: #C8A96E !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: #b8994e !important;
  transform: translateY(-1px);
}


/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #C8A96E;
  color: #fff;
}

.btn-primary:hover {
  background: #b8994e;
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  padding: 18px 40px;
  font-size: 17px;
}


/* ---- SECTION COMMON STYLES ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-divider {
  width: 64px;
  height: 2px;
  background: #C8A96E;
  margin: 0 auto 32px;
}

.section-description {
  font-size: 17px;
  color: #6B7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 15, 30, 0.5) 0%,
    rgba(10, 15, 30, 0.7) 50%,
    rgba(10, 15, 30, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-welcome {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
}

.hero-divider {
  width: 96px;
  height: 1px;
  background: #C8A96E;
  margin: 24px auto;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-description2 {
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-tagline {
  font-size: 16px;
  color: #C8A96E;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator:hover {
  color: #fff;
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 96px 0 128px;
  background: #FAF8F5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 128px;
  height: 128px;
  border: 2px solid #C8A96E;
  border-radius: 16px;
  z-index: -1;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1B3A4B;
  margin-bottom: 24px;
}

.about-text p {
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 17px;
  font-weight: 300;
}

.about-quote {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4A7C6F;
  margin-top: 32px;
}

.quote-line {
  width: 48px;
  height: 1px;
  background: #4A7C6F;
}

.about-quote p {
  font-style: italic;
  font-size: 15px;
  color: #4A7C6F;
  margin-bottom: 0;
}

/* Three Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  text-align: center;
  padding: 40px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(74, 124, 111, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.pillar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1B3A4B;
  margin-bottom: 16px;
}

.pillar-card p {
  color: #6B7280;
  line-height: 1.7;
  font-weight: 300;
  font-size: 15px;
}


/* ============================================
   RETREATS SECTION
   ============================================ */
.retreats-section {
  padding: 96px 0 128px;
  background: #1A1A2E;
}

.retreats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.retreat-card {
  background: #252547;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.retreat-card:hover {
  box-shadow: 0 20px 60px rgba(200, 169, 110, 0.1);
  transform: translateY(-4px);
}

.retreat-image {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.retreat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.retreat-card:hover .retreat-image img {
  transform: scale(1.1);
}

.retreat-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #252547, transparent, transparent);
}

.retreat-icon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.retreat-content {
  padding: 32px;
}

.retreat-duration {
  color: #C8A96E;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}

.retreat-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.retreat-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
  font-size: 15px;
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 96px 0 128px;
  background: #FAF8F5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
  position: absolute;
  top: -16px;
  left: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C8A96E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(200, 169, 110, 0.3);
}

.testimonial-stars {
  color: #C8A96E;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  margin-top: 8px;
}

.testimonial-text {
  color: #6B7280;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 32px;
}

.testimonial-author {
  border-top: 1px solid #f0f0f0;
  padding-top: 24px;
}

.author-name {
  font-weight: 600;
  color: #1B3A4B;
  font-size: 15px;
  margin-bottom: 4px;
}

.author-location {
  color: #6B7280;
  font-size: 13px;
  font-weight: 300;
}


/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
  padding: 96px 0 128px;
  background: linear-gradient(to bottom, #1B3A4B, #1A1A2E);
  position: relative;
  overflow: hidden;
}

.signup-decoration-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background: rgba(200, 169, 110, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
}

.signup-decoration-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(74, 124, 111, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(50%, 50%);
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.guide-image-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.guide-image {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.guide-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 16px;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}

.benefits-title {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
}

/* Signup Form Card */
.signup-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.signup-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 32px;
  font-size: 15px;
}

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

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
  border-color: #C8A96E;
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.form-privacy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  text-align: center;
  margin-top: 16px;
}

/* Success State */
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(74, 124, 111, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

#signupSuccess {
  text-align: center;
  padding: 32px 0;
}

#signupSuccess h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.success-text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0F0F1E;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 80px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.footer-logo-sub {
  color: #C8A96E;
  font-style: italic;
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  font-weight: 300;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C8A96E;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 300;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #C8A96E;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(200, 169, 110, 0.2);
  color: #C8A96E;
}

.social-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #C8A96E;
}


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

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .section-title {
    font-size: 40px;
  }

  .hero-title {
    font-size: 60px;
  }

  .about-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}


/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* Navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 30, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  /* Hero */
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-description {
    font-size: 16px;
  }
	
 .hero-description2 {
    font-size: 12px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 14px 32px;
    font-size: 15px;
  }

  /* Section titles */
  .section-title {
    font-size: 32px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-accent {
    display: none;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Retreats */
  .retreats-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Signup */
  .signup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .signup-form-card {
    padding: 28px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
#logo {
  width: 487px;
  height: 95px;
  object-fit: contain;   /* tryggir að hún skemmist ekki */
  display: inline-block;
}
