/* Modern luxury styling */
:root {
  --primary-color: #b38b59;
  --text-color: #333;
  --background-light: #f9f6f2;
  --background-dark: #2c2c2c;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

header {
  background-color: var(--background-dark);
  color: white;
  padding: 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.logo a {
  color: var(--primary-color);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 2px 0;
  transition: 0.3s;
}

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

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--background-dark);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  nav ul.active {
    display: flex;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

.hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 60px;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

.section-dark {
  background-color: var(--background-dark);
  color: white;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #666;
}

.section-dark > p {
  color: #ddd;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card {
  animation: fadeIn 0.6s ease-in;
  animation-fill-mode: both;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.card ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.card ul li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.card .cta {
  margin-top: 1.5rem;
  display: inline-block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial {
  text-align: center;
  padding: 2rem;
}

.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

footer {
  background-color: var(--background-dark);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.cta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #95744a;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 3rem 1rem;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 2rem;
  }
}

/* Styling for Partners Section List */
#partners ul {
  list-style: none; /* Remove default bullets */
  padding-left: 0; /* Remove default padding */
  margin-top: 2rem; /* Add space above the list */
  max-width: 800px; /* Limit width for readability */
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* Align text left within the centered block */
}

#partners ul li {
  padding: 0.5rem 0; /* Add vertical padding to list items */
  border-bottom: 1px solid #444; /* Subtle separator */
}

#partners ul li:last-child {
  border-bottom: none; /* Remove border from last item */
}

#partners ul li a {
  color: var(--primary-color); /* Use primary color for links */
  text-decoration: none;
  font-weight: 500;
}

#partners ul li a:hover {
  text-decoration: underline; /* Add underline on hover */
}

#partners > p:last-of-type { /* Style the concluding paragraph */
    margin-top: 2rem;
}

/* Card styling within dark sections */
.section-dark .card {
  background-color: #3a3a3a; /* Slightly lighter dark background for cards */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Adjust shadow for dark bg */
}

.section-dark .card h3 {
  color: var(--primary-color); /* Keep heading color consistent */
}

.section-dark .card p {
  color: #eee; /* Light text color for paragraphs inside dark cards */
}

.section-dark .card ul li {
  color: #eee; /* Light text color for list items */
}

/* Ensure list bullet points are visible */
.section-dark .card ul li:before {
  color: var(--primary-color);
}

.section-dark .card .cta {
  background-color: var(--primary-color); /* Ensure CTA button is visible */
  color: white;
}

.section-dark .card .cta:hover {
  background-color: #95744a;
}

/* Ensure testimonial text is light */
.section-dark .testimonial p {
    color: #ddd;
}
.section-dark .testimonial h3 {
    color: white; /* Make testimonial name white */
}

/* Ensure partner list links are styled correctly */
#partners ul li a {
  color: var(--primary-color); /* Use primary color for links */
  text-decoration: none;
  font-weight: 500;
}

#partners ul li a:hover {
  text-decoration: underline; /* Add underline on hover */
}