:root {
  /* Color Palette from Image */
  --green-tea: #F3F6EB;
  --sunflower: #FFCE55;
  --sour-apple: #DBF68F;
  --jade: #92C3A5;
  --soft-forest: #568366;
  
  /* Legacy variables mapped to new palette */
  --background: var(--green-tea);
  --text-main: var(--soft-forest);
  --accent-green: var(--jade);
  --font-serif: 'Prata', 'Antic Didone', serif;
  --font-sans: 'Albert Sans', sans-serif;

  --p-orange: var(--sunflower);
  --p-blue: var(--soft-forest);
  --p-yellow: var(--sour-apple);
  --p-green: var(--jade);
  --p-brown: var(--sunflower);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text-main);
  text-align: center;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  width: 100%;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  background-color: var(--background);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.top-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
}

.top-nav-link {
  text-decoration: none;
  color: var(--soft-forest);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

.top-nav-link:hover {
  background-color: var(--jade);
  color: white;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-radius: 8px;
  z-index: 1001;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}

.dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--soft-forest);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: var(--green-tea);
  color: var(--soft-forest);
}

/* Orange link color (darker orange) */
.link-orange {
  color: #E6A842;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-orange:hover {
  color: #CC8F2A;
  text-decoration: underline;
}

.header-left { 
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.header-center { 
  text-align: center;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-right { 
  text-align: right;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.logo {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text-main);
}

.nav-link {
text-decoration: none;
color: var(--text-main);
font-size: 0.9rem;
font-weight: 600;
margin: 0 0.4rem;
padding: 0.2rem;
border-radius: 0;
filter: none;
transition: color 0.2s;
}

.nav-link:hover {
background-color: transparent;
color: var(--sunflower);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    transition: transform 0.2s ease;
}

.lang-btn:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero-section {
  padding: 2rem 1rem 4rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-curved-text-container {
    position: relative;
    width: 350px; 
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

#hero-curved-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--jade);
  letter-spacing: 2px;
}

.placeholder-main {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: var(--sunflower);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--soft-forest);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  text-align: center;
}

.btn {
  background-color: var(--jade);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: scale(1.1);
  background-color: var(--soft-forest);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.hero-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 3rem auto 0 auto;
  text-align: left;
}
.info-box p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Vision Section */
.vision-section {
  padding: 4rem 2rem;
}
.placeholder-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.placeholder-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.content-grid {
  max-width: 800px;
  margin: 0 auto;
}
.content-grid h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
}
.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
  line-height: 1.6;
}

/* Timeline & Actions Sections */
.timeline-section, .actions-section {
  padding: 3rem 2rem;
}
.content-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.timeline-section h2, .actions-section h3 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 2rem 0;
}
.timeline-list {
  text-align: left;
}

.milestone {
  padding: 1rem 0;
  border-bottom: 2.5px dashed var(--soft-forest);
  font-size: 1.1rem;
}

/* --- New Pitch Deck Section Styles --- */
.pitch-deck-section {
    padding: 4rem 2rem;
    background-color: #fff;
}
.pitch-deck-section h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 0 2rem 0;
}
.canva-embed-container {
    max-width: 960px;
    margin: 0 auto;
}
.canva-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    box-shadow: 0 2px 8px 0 rgba(63,69,81,0.16);
    overflow: hidden;
    border-radius: 8px;
}
.canva-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    padding: 0;
    margin: 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.action-box {
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
}
.action-box h3 {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
}

/* Footer */
.site-footer {
  padding: 4rem 2rem 2rem 2rem;
}
.site-footer h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 1rem 0;
}
.social-links a {
  color: var(--text-main);
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 600;
}
.placeholder-footer {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 2rem auto 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-info-grid, .text-columns, .actions-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    flex-wrap: wrap;
    padding: 1rem;
  }
  .top-nav-links {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
  }
  .header-center {
    order: -1;
    width: 100%;
    margin-bottom: 1rem;
  }
  .header-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .language-switcher {
    flex-wrap: wrap;
  }
}
/* ADD THESE NEW STYLES TO THE BOTTOM OF YOUR CSS FILE */

/* Hero Section Enhancements */
.hero-subtitle {
max-width: 600px;
margin: 1rem auto 0 auto;
}
.hero-subtitle p {
font-size: 1.2rem;
line-height: 1.6;
font-weight: 400;
}

/* Pillars Section (New) */
.pillars-section {
padding: 4rem 2rem;
background-color: #fff; /* A slight contrast */
}
.pillars-container {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
align-items: center;
}
.pillars-image {
display: flex;
justify-content: center;
align-items: center;
}
.pillars-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2.5rem;
}
.pillar {
text-align: center;
}
.pillar-icon {
font-size: 2.5rem;
color: var(--sunflower);
margin-bottom: 1rem;
}
.pillar h3 {
font-family: var(--font-serif);
font-size: 1.5rem;
margin: 0 0 0.5rem 0;
}
.pillar p {
line-height: 1.5;
font-size: 1rem;
max-width: 300px;
margin: 0 auto;
}

/* Model Section (Was Vision Section) */
.model-section {
  padding: 5rem 2rem;
  text-align: center;
}
.model-section .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
}
.model-section .content-wrapper p {
  margin-bottom: 1.5rem;
}
.model-section h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 2rem 0;
  text-align: center;
}

/* Residence Section (New) */
.residence-section {
  padding: 5rem 2rem;
  background-color: #fff;
}
.residence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.residence-content h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  text-align: left;
}
.residence-content p {
  text-align: left;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.residence-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2rem;
}
.residence-content li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.residence-content li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--jade);
  font-size: 1.2rem;
}
.residence-image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background-color: var(--soft-forest);
  border-radius: 8px;
  margin: 0 auto;
  /* In the future, replace this with:
  background-image: url('your-image.jpg');
  background-size: cover;
  background-position: center;
  */
}

/* Actions Section Title */
.actions-section h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0 0 3rem 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
  .pillars-container {
      grid-template-columns: 1fr;
  }
  .pillars-image {
      order: -1;
      margin-bottom: 2rem;
  }
  .pillars-grid {
      grid-template-columns: 1fr;
  }
  .residence-grid {
      grid-template-columns: 1fr;
  }
  .residence-image-placeholder {
      height: 300px;
      order: -1; /* Puts image on top on mobile */
  }
}

@media (max-width: 768px) {
  .site-header nav.header-right {
      display: flex; /* Overriding previous rule to show nav */
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--background);
      padding: 1rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: none; /* Keep it hidden by default, maybe add a burger menu later */
  }
}