@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;700;800&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #050505;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Cinzel', serif;
  color: #fff;
  letter-spacing: 1px;
}

/* Header & Nav */
header {
  padding: 30px 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 1px; /* Tighter letter spacing to match logo style */
  text-transform: uppercase;
  font-size: 2rem; /* Adjusted size */
  color: #d4af37;
  line-height: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Subtle depth like the logo */
}

.logo-text span {
  display: block;
  font-size: 0.85rem;
  color: #d4af37; /* Match gold color instead of gray */
  font-family: 'Cinzel', serif; /* Use same font for both */
  letter-spacing: 4px;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  background: url('assets/hero-bg-v2.png') no-repeat center center/cover;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.95) 30%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #e5c05b, #b8860b);
  color: #000 !important;
  padding: 15px 45px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #f5d06b, #c8961b);
}

/* Services Section */
.services-section {
  padding: 150px 0;
  text-align: center;
  background-color: #080808;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 80px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #d4af37;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: #0d0d0d;
  padding: 60px 40px;
  border-radius: 12px;
  border: 1px solid #1a1a1a;
  transition: all 0.4s;
}

.service-card:hover {
  border-color: #d4af37;
  transform: translateY(-10px);
  background: #111;
}

.service-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  padding: 150px 0;
  background: #050505;
}

.contact-container {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.contact-info p {
  color: #888;
  font-size: 1.1rem;
}

.contact-form {
  flex: 1.2;
  background: #0d0d0d;
  padding: 60px;
  border-radius: 15px;
  border: 1px solid #1a1a1a;
}

.form-group {
  margin-bottom: 25px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 18px;
  background: #050505;
  border: 1px solid #222;
  color: #fff;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #e5c05b, #b8860b);
  color: #000;
  padding: 20px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #f5d06b, #c8961b);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

footer {
  padding: 60px 0;
  border-top: 1px solid #111;
  color: #444;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-services h4 {
  color: #d4af37;
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-brand h3 {
  color: #d4af37;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.footer-brand p {
  color: #888;
  font-size: 0.95rem;
}

.footer-location {
  color: #666;
  font-size: 0.85rem;
  margin-top: 15px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 25px;
  text-align: center;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-copyright {
  color: #444;
  font-size: 0.8rem;
}

.legal-page {
  padding: 150px 0 80px;
  min-height: 100vh;
}

.legal-page h1 {
  font-family: 'Cinzel', serif;
  color: #d4af37;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.legal-page .legal-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-page p {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-page ul {
  color: #b0b0b0;
  margin-left: 25px;
  margin-bottom: 15px;
}

.legal-page li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-page a {
  color: #d4af37;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    flex-direction: column;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  /* Header / Nav */
  header {
    padding: 15px 0;
  }
  .logo img {
    height: 40px;
  }
  .logo-text {
    font-size: 1.2rem;
  }
  .logo-text span {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 0.75rem;
  }

  /* Hero */
  .hero {
    min-height: 600px;
    padding-top: 100px;
  }
  .hero-content {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary {
    padding: 12px 30px;
    font-size: 0.8rem;
  }

  /* Services */
  .services-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    padding: 30px 20px;
  }
  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 0.85rem;
  }

  /* Contact */
  .contact-section {
    padding: 60px 0;
  }
  .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .contact-info p {
    font-size: 0.9rem;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .form-group input, .form-group textarea {
    padding: 12px;
    font-size: 0.9rem;
  }
  .btn-submit {
    padding: 15px;
    font-size: 0.85rem;
  }

  /* Footer */
  footer {
    padding: 30px 0;
    font-size: 0.75rem;
  }

  .container {
    padding: 0 20px;
  }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
  .logo img {
    height: 30px;
  }
  .logo-text {
    font-size: 1rem;
  }
  .logo-text span {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }
  .nav-links a {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  .hero {
    padding-top: 120px;
  }
  .hero-content {
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero p {
    font-size: 0.85rem;
  }
  .btn-primary {
    padding: 10px 25px;
    font-size: 0.75rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 30px;
  background: #111;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.cookie-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.5;
}

.cookie-content a {
  color: #d4af37;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn-decline {
  background: transparent;
  color: #888;
  border: 1px solid #333;
}

.cookie-btn-accept {
  background: #d4af37;
  color: #000;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
