:root {
  --primary-gold: #c5a059;
  --primary-gold-dark: #a27e36;
  --dark-bg: #141414;
  --card-bg: #1e1e1e;
  --light-bg: #f9f9f9;
  --text-dark: #222222;
  --text-light: #f5f5f5;
  --text-muted: #888888;
  --border-color: #333333;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--dark-bg);
}

.gold-divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary-gold);
  margin: 12px auto 0;
}

.gold-divider-left {
  width: 60px;
  height: 3px;
  background-color: var(--primary-gold);
  margin: 10px 0 20px 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(20, 20, 20, 0.95);
  z-index: 1000;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  max-width: 1300px;
  margin: auto;
}

.brand-logo {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-logo span {
  color: var(--primary-gold);
  font-style: italic;
  font-family: serif;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.btn-nav {
  border: 1px solid var(--primary-gold);
  padding: 8px 18px;
  border-radius: 4px;
}

.btn-nav:hover {
  background-color: var(--primary-gold);
  color: var(--dark-bg) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Brand Logo Styling */
.hero-logo {
  width: 240px;            /* Increased width from 140px to 240px */
  max-width: 85%;          /* Prevents overflow on smaller viewports */
  height: auto;
  margin: 0 auto 25px auto;/* Centers horizontally with spacing beneath */
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
  animation: fadeInDown 1s ease-in-out;
}

/* Responsive adjustment for tablets & mobile phones */
@media (max-width: 768px) {
  .hero-logo {
    width: 180px;          /* Scaled down cleanly for mobile viewports */
    margin-bottom: 20px;
  }
}

/* Optional Smooth Fade-in Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adjust size for smaller screens */
@media (max-width: 768px) {
  .hero-logo {
    width: 110px;
    margin-bottom: 15px;
  }
}
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--primary-gold);
}

.hero-tagline {
  color: var(--primary-gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-desc {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #ddd;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: #111;
  border: 1px solid var(--primary-gold);
}

.btn-primary:hover {
  background-color: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #111;
}

.btn-block {
  width: 100%;
}

/* Cards & Layouts */
.lead-text {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.info-card {
  background: var(--light-bg);
  padding: 30px;
  border-left: 4px solid var(--primary-gold);
  border-radius: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--dark-bg);
}

.service-card ul {
  list-style: none;
  margin-top: 15px;
}

.service-card ul li {
  padding: 6px 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-gold);
  color: #111;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: 240px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.85);
  color: var(--text-light);
  padding: 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-item.hide {
  display: none;
}

/* Feature Boxes */
.alt-section {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-box {
  background-color: var(--card-bg);
  padding: 35px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.styled-list {
  list-style: none;
  margin-top: 15px;
}

.styled-list li {
  margin-bottom: 12px;
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info {
  background-color: var(--light-bg);
  padding: 35px;
  border-radius: 6px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-form {
  background: #ffffff;
  padding: 35px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.form-status {
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
}

/* Footer */
.footer {
  background-color: #0b0b0b;
  color: var(--text-muted);
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #222;
}

.footer .motto {
  color: var(--primary-gold);
  font-size: 0.9rem;
  margin-top: 6px;
}

/* Responsive Rules */
@media (max-width: 850px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    flex-direction: column;
    padding: 20px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .grid-two-col,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* Media Production Section Styles */
.media-section-wrapper {
  margin-top: 10px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.media-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.media-badge {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.media-card h3 {
  color: var(--primary-gold);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.media-card p {
  color: #cfcfcf;
  font-size: 0.92rem;
  line-height: 1.6;
}
/* Contact Social Buttons */
.contact-socials {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(197, 160, 89, 0.3);
}

.contact-socials h4 {
  font-family: var(--font-heading);
  color: var(--dark-bg);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.social-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Solid Red Background Social Buttons */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid #d90429;
  background-color: #d90429;      /* Solid red background */
  color: #ffffff;                 /* White text */
  transition: all 0.3s ease;
}

/* Darker Red on Hover with Elevation */
.social-btn:hover {
  background-color: #b00020;      /* Darker red hover state */
  border-color: #b00020;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(217, 4, 41, 0.4);
}