/* Root Color Theme */
:root {
  --deep-red: #BF0413;
  --dusty-lavender: #B8B0BF;
  --charcoal-plum: #52424F;
  --slate-blue: #415161;
  --soft-pink: #FEBBC4;
  --text-light: #ffffff;
  --text-dark: #231942;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #dceed1;
  color: var(--text-dark);
  line-height: 1.6;
  text-align: center;
}

h1, h2, h3 {
  color: var(--slate-blue);
  margin-bottom: 0.5em;
  text-align: center;
}

p, li, blockquote {
  color: var(--charcoal-plum);
  text-align: center;
}

ul {
  list-style-type: none;
  padding-left: 0;
  text-align: center;
}

section {
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(184, 176, 191, 0.95); /* semi-transparent dusty lavender */
  border-radius: 12px;
  max-width: 1200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Centering tables in sections */
section table {
  margin: 0 auto;
  border-collapse: collapse;
}

section table td {
  padding: 0.5rem 1rem;
  text-align: center;
}

/* Navbar */
/* NAV CONTAINER BASE STYLES */
.navbar {
  background-color: #52424F;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1100px;
  margin: auto;
}

/* LOGO */
.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffff;
  text-decoration: none;
}

.nav-logo:hover {
  color: var(--soft-pink);
}

/* LINKS (DESKTOP) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ffff;
  font-weight: 500;
  padding: 0.5rem;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #52424F;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    display: none;
  }

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


.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--soft-pink);
}

/* Hero */
.hero {
  background: var(--slate-blue);
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}

.hero img {
max-width: 700px;
}

.hero h1 {
    color: #ffff;
}

.hero p {
    color: #ffff;
}

.cta-button {
  display: inline-block;
  background: var(--deep-red);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background: var(--charcoal-plum);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}

/* Blockquotes */
.reviews blockquote {
  background: var(--charcoal-plum);
  border-left: 5px solid var(--deep-red);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  color: #ffffff;
}

.reviews footer {
  font-style: italic;
  margin-top: 0.5rem;
  color: var(--deep-red);
}

/*links*/
.contact-links p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.contact-links i {
  color: #6c5ce7;
  margin-right: 6px;
}

.contact-links a {
  color: #0984e3;
  text-decoration: none;
  font-weight: 500;
}

.contact-links a:hover {
  text-decoration: underline;
}

#contact img {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 2rem auto 0; /* space above + center align */
  padding: 0.5rem;
  border-radius: 1rem; /* optional: soften edges */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* soft shadow */
}

.host-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.host-photo {
  width: 250px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  background: var(--charcoal-plum);
  text-align: center;
  padding: 1rem;
}

.footer p {
  color: var(--soft-pink);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero img {
    max-width: 300px;
  }

  section {
    padding: 1.5rem 1rem;
  }
}
