
body {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #0b1020;
  background: #050814;
}

/* Typography */
h1,h2,h3,h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: #f9fafb;
  margin-bottom: 0.6rem;
}

p,li,label {
  color: #e5e7eb;
  font-size: 1rem;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

/* Header / nav */
.site-header {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9fafb;
}

.logo span {
  color: #38bdf8;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-links a:hover {
  background: rgba(56, 189, 248, 0.2);
  color: #0ea5e9;
  transform: translateY(-1px);
}

.nav-links a.active {
  background: #38bdf8;
  color: #0b1120;
  font-weight: 600;
}

/* Hero section  */
.hero {
  max-width: 1100px;
  margin: 1.75rem auto 2.5rem auto;
  padding: 1.5rem 1.25rem 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-heading {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
}


.hero-text {
  margin-top: 0.75rem;
  color: #e5e7eb;
}

.hero-cta-row {
  display: flex;
  justify-content: center;   
  gap: 0.75rem;
  margin-top: 1.2rem;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #020617;
  box-shadow: 0 12px 25px rgba(56, 189, 248, 0.45);
  border-color: rgba(8, 47, 73, 0.8);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.6);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

/* Animation */

@keyframes floatPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 12px 25px rgba(56, 189, 248, 0.45);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(56, 189, 248, 0.7);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 12px 25px rgba(56, 189, 248, 0.45);
  }
}

.btn-primary.is-animated {
  animation: floatPulse 3.2s ease-in-out infinite;
}



/* Hero */
.hero {
  position: relative;
  max-width: none;          
  width: 100%;
  min-height: 50vh;         
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.25rem 4rem; 
  overflow: hidden;
}


.hero > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center; 
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
}

.hero-heading {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.hero-text {
  color: #f8fafc;
}

/* Hero image */
.hero-media {
  position: absolute;
  inset: 0;                 
  z-index: 1;
}

.hero-image-card {
  width: 100%;
  height: 100%;
  border-radius: 0;         
  overflow: hidden;
  border: none;
  background: #000;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;        
  opacity: 0.9;
}



/* Main sections */
.section {
  max-width: 1100px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1.25rem;
}

.section-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #0f172a;
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.9rem;
  margin-bottom: 0.85rem;
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  font-size: 0.95rem;
  color: #9ca3af;
}


/* Statement page */
.statement-content {
  max-width: 800px;
  margin: 2rem auto 3rem auto;
  background: #0f172a;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}

.statement-content p {
  margin-bottom: 1rem;
}

.statement-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.statement-content li {
  color: #9ca3af;
  font-size: 0.95rem;
}

/* Contact page */
.form-card {
  max-width: 650px;
  margin: 2rem auto 3rem auto;
  background: #0f172a;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

input, textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.55rem 0.7rem;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 0.95rem;
}

input:focus,
textarea:focus {
  outline: 2px solid #0ea5e9;
  outline-offset: 1px;
  border-color: transparent;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: #020617;
  padding: 1.2rem 1.25rem;
  margin-top: 2.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-contact span {
  font-size: 0.8rem;
}


