:root {
  --color-white: #FFFFFF;
  --color-beige: #F5F0E8;
  --color-peach: #FFCBA4;
  --color-pista-green: #B5D5A8;
  --color-dark-blue: #1A3A6B;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --transition: 0.2s ease;
  --shadow: 0 4px 12px rgba(26, 58, 107, 0.08);
}

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

body {
  font-family: var(--font-body);
  color: var(--color-dark-blue);
  background-color: var(--color-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark-blue);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(26, 58, 107, 0.1);
}

.nav-zone {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1;
}

.nav-left {
  justify-content: flex-start;
}

.nav-center {
  justify-content: center;
}

.nav-right {
  justify-content: flex-end;
}

.logo img {
  height: 80px;
  object-fit: contain;
}

/* DROPDOWNS */
.dropdown {
  position: relative;
  display: inline-block;
}

.btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px; /* Pill shape */
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  font-size: 0.95rem;
}

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

.btn-blue:hover {
  background-color: #12284b;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-green {
  background-color: var(--color-pista-green);
  color: var(--color-dark-blue);
}

.btn-green:hover {
  background-color: #a4c696;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-peach {
  background-color: var(--color-peach);
  color: var(--color-dark-blue);
}

.btn-peach:hover {
  background-color: #f7b98b;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--color-white);
  min-width: 200px;
  box-shadow: var(--shadow);
  border-radius: 12px;
  z-index: 1;
  top: 110%;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 58, 107, 0.05);
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

.dropdown-content a {
  color: var(--color-dark-blue);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background-color: var(--color-beige);
  color: var(--color-peach);
}

/* SUB DROPDOWN */
.sub-dropdown {
  position: relative;
}

.sub-dropbtn {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: var(--color-white);
  min-width: 200px;
  box-shadow: var(--shadow);
  border-radius: 12px;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(26, 58, 107, 0.05);
}

.sub-dropdown:hover .sub-dropdown-content {
  display: flex;
  flex-direction: column;
}

.sub-dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  color: var(--color-dark-blue);
}

.sub-dropdown-content a:hover {
  background-color: var(--color-beige);
  color: var(--color-peach);
}

/* SECONDARY NAV */
.nav-bottom {
  display: flex;
  justify-content: center;
  padding: 0.8rem;
  background-color: var(--color-beige);
  gap: 2rem;
}

.nav-bottom a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-bottom a:hover, .nav-bottom a.active {
  color: var(--color-peach);
}

.nav-bottom a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-peach);
  transition: width var(--transition);
}

.nav-bottom a:hover::after, .nav-bottom a.active::after {
  width: 100%;
}

/* HOME DROPDOWNS ROW */
.home-dropdowns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 10%;
  max-width: 1200px;
  margin: 0 auto;
}

.home-logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.home-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* POSTCARD/PASSPORT SECTION */
.postcard-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 5% 5rem;
  background-color: var(--color-white);
  gap: 2rem;
}

.postcard-wrapper {
  position: relative;
  width: 100%;
  max-width: 250px; /* Passport size */
  aspect-ratio: 3 / 4;
  border-radius: 8px; /* Slightly rounded */
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--color-white); /* White photo border */
  outline: 1px solid rgba(0,0,0,0.1);
}

.postcard-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.postcard-section h1 {
  text-align: center;
  color: var(--color-dark-blue);
  font-size: 3.5rem;
  font-weight: 700;
  animation: fadeIn 1s ease-out;
}

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

/* FOOTER */
footer {
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  padding: 4rem 5% 2rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 1.5rem;
}

.social-icons a {
  color: var(--color-pista-green);
}

.social-icons a:hover {
  color: var(--color-peach);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* GRID LAYOUT (Credentials) */
.page-container {
  padding: 5rem 5%;
  min-height: calc(100vh - 300px);
}

.page-container h1 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
}

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

.soft-card {
  background-color: var(--color-beige);
  border: 2px solid var(--color-pista-green);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.soft-card:hover {
  transform: translateY(-5px);
  background-color: var(--color-white);
}

.soft-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.badge {
  background-color: var(--color-peach);
  color: var(--color-dark-blue);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* COMING SOON PAGES */
.coming-soon-container {
  background-color: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 300px);
}

.coming-soon-text {
  font-family: var(--font-heading);
  color: var(--color-dark-blue);
  font-size: 4rem;
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-zone {
    justify-content: center;
    width: 100%;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 600px) {
  .nav-bottom {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .dropdown-content {
    min-width: 100%;
  }
}
