@font-face {
  font-family: "Open Sans";
  font-weight: 100 900; /*variable range*/
  src:
    url("../fonts/opensans-variablefont_wdthwght-webfont.woff2") format("woff2"),
    url("../fonts/opensans-variablefont_wdthwght-webfont.woff") format("woff");
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src:
    url("../fonts/opensans-italic-variablefont_wdthwght-webfont.woff2")
      format("woff2"),
    url("../fonts/opensans-italic-variablefont_wdthwght-webfont.woff")
      format("woff");
  font-weight: 100 900;
  font-style: italic;
}

/* ===== CSS Variables ===== */
:root {
  --gold: #d4af37;
  --gold-light: #f5e6a3;
  --gold-dark: #b8960f;
  --purple: #6a0dad;
  --purple-light: #9b59b6;
  --purple-dark: #4a0072;
  --white: #ffffff;
  --off-white: #faf8f5;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.6;
}

/* img {
  max-width: 100%;
  height: auto;
} */

a {
  text-decoration: none;
  color: var(--purple);
}

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

/* ===== Typography ===== */
.highlight-gold {
  color: var(--gold);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* ===== Navigation ===== */
.navbar {
  background: var(--white);
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
}

.nav-container {
  max-width: 1200px;
  height: 100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-text {
  font-weight: bold;
  color: var(--purple);
  font-size: 1.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--purple);
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.nav-cta::after {
  display: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--purple-dark) 0%,
    var(--purple) 50%,
    var(--gold-dark) 100%
  );
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero-bg.jpg") center/cover;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--purple);
  transform: translateY(-3px);
}

.btn-small {
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
}

/* ===== Stats ===== */
.stats {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ===== Services Preview ===== */
.services-preview {
  padding: 5rem 0;
}

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

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid var(--gold);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--purple);
  margin-bottom: 0.75rem;
}

/* ===== Testimonial ===== */
.testimonial {
  background: var(--purple);
  color: var(--white);
  padding: 4rem 20px;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 1rem;
  font-style: italic;
}

.testimonial cite {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 500;
}

/* ===== About Page ===== */
.page-header {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--white);
  padding: 4rem 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
}

.about-content {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  color: var(--purple);
  margin: 1.5rem 0 0.5rem;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text h3 {
  color: var(--gold-dark);
  margin: 1rem 0 0.25rem;
}

.about-closing {
  font-size: 1.3rem;
  color: var(--purple);
  margin-top: 2rem;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.about-quote {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

/* ===== Services Full ===== */
.services-full {
  padding: 4rem 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.service-detail-icon {
  font-size: 3rem;
  text-align: center;
}

.service-detail-content h2 {
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-detail-content ul li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-detail-content ul li::before {
  content: "✦";
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ===== Portfolio ===== */
.portfolio-grid {
  padding: 4rem 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  color: var(--gray);
  font-size: 2rem;
}

.gallery-placeholder p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Contact ===== */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-form label {
  font-weight: 600;
  margin-top: 1rem;
  display: block;
}

.contact-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-info h2 {
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 1.5rem;
  width: 40px;
  flex-shrink: 0;
}

.booking-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.booking-links .btn {
  background: var(--purple-light);
  color: var(--white);
  padding: 0.4rem 1.2rem;
}

.booking-links .btn:hover {
  background: var(--purple);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  color: var(--purple);
  font-weight: 500;
}

.social-links a:hover {
  color: var(--gold);
}

/* ===== Success Page ===== */
.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 20px;
}

.success-card {
  background: var(--white);
  padding: 4rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  box-shadow: var(--shadow);
  border-bottom: 6px solid var(--gold);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success-card h1 {
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.success-message {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 1.5rem 0;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  text-align: center;
  padding: 4rem 20px;
}

.cta-section h2 {
  font-size: 2.5rem;
}

.cta-section .btn {
  background: var(--white);
  color: var(--purple);
  margin-top: 1rem;
}

.cta-section .btn:hover {
  background: var(--off-white);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1rem;
}

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

.footer-brand img {
  height: 60px;
  width: auto;
  border-radius: 50%;
}

.footer-brand p {
  color: var(--gold-light);
  margin-top: 0.5rem;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

/* alternative */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.contact-item .contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item .contact-numbers a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.contact-item .contact-numbers a:hover {
  color: var(--gold);
}

.contact-item .fa-envelope {
  margin-top: 7px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

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

/* ===== Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-quote {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    gap: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.5rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .footer-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the contact section */
  }

  .social-icons {
    justify-content: center;
  }

  .contact-item {
    justify-content: center; /* Centers the contact items on mobile */
    width: 100%;
    max-width: 280px; /* Keeps it from stretching too wide */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* ===== Portfolio Category Filters ===== */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  /* margin-bottom: 3rem; */
  margin: 2rem 0;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--dark);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.95rem;
}

.filter-btn:hover {
  background: var(--gold-light);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--white);
}

/* ===== Category Sections ===== */
.category-section {
  margin-bottom: 4rem;
}

.category-section:last-child {
  margin-bottom: 0;
}

.category-title {
  color: var(--purple);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

/* ===== Footer Contact Inline ===== */
.contact-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

/* .contact-icon {
  font-size: 1.1rem;
  display: inline-flex;
} */

.contact-separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.25rem;
}

.footer-contact a {
  display: inline;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
}

/* ===== About Page Image Placeholder ===== */
.about-image-placeholder {
  background: linear-gradient(135deg, var(--gold-light), var(--purple-light));
  border-radius: 15px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.placeholder-content {
  color: var(--white);
}

.placeholder-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.placeholder-content p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* ===== Form Group Fixes ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background: var(--white);
  appearance: auto; /* Ensures consistent select sizing */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group select {
  /* Ensures selects match input sizes */
  min-height: 50px;
  padding: 0.75rem 1rem;
}

/* ===== Portfolio Grid Category Filtering ===== */
.category-section {
  display: block;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.category-section.hidden {
  display: none;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {
  .category-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .contact-inline {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-image-placeholder {
    min-height: 250px;
  }
}
