@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #0b1120;
  --secondary: #d4af37; /* Gold */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --bg-main: #0b1120;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
}

.nav-brand span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 300;
  display: block;
  letter-spacing: 2px;
}

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

.nav-link {
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--secondary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.4);
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Dynamic Data Section */
.info-section {
  padding: 5rem 5%;
  background: var(--bg-secondary);
}

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

.info-card {
  background: var(--bg-tertiary);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Contact Page */
.page-header {
  padding: 10rem 5% 5rem;
  text-align: center;
  background: var(--bg-secondary);
}

.contact-wrap {
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-details {
  background: var(--bg-tertiary);
  padding: 3rem;
  border-radius: 8px;
}

.contact-details h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact-item span {
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 4px;
  font-family: inherit;
}

/* Footer */
footer {
  padding: 3rem 5%;
  text-align: center;
  background: #050810;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-dynamic-info {
  margin-top: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
