/* General reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050506;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  background: rgba(0,0,0,0.7);
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
}

.logo img {
  height: 30px;
  width: auto;
}.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-main {
  color: #f5f5f5;
}

.logo-accent {
  color: #ff6b2c;
  margin-left: 0.25rem;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  border: 1px solid #ff6b2c;
}

/* Hero */

.hero {
  position: relative;
  min-height: 90vh;
  padding-top: 72px;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
}

/* When you are ready, replace hero-placeholder.jpg with a real image in the same folder */

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
}
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem 0;
  max-width: 650px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-align: center;
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background-color: #ff6b2c;
  color: #050506;
  border-color: #ff6b2c;
}

.btn-primary:hover {
  background-color: #ff8351;
  border-color: #ff8351;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: #f5f5f5;
  border-color: rgba(245, 245, 245, 0.7);
}

.btn-outline:hover {
  background-color: rgba(245, 245, 245, 0.08);
}

.full-width {
  width: 100%;
}

/* Sections */

.section {
  padding: 4.5rem 0;
}

.section-light {
  background: #101015;
  color: #f5f5f5;
}

.section-dark {
  background: #050506;
  color: #f5f5f5;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
  color: #d6d6d6;
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card {
  background: #17171e;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.card p {
  margin-bottom: 0.75rem;
  color: #d8d8d8;
}

.card ul {
  list-style: disc;
  padding-left: 1.1rem;
  color: #c3c3c3;
}

/* Service area */

.service-area {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.service-area h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  color: #ff6b2c;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.gallery-item h4 {
  margin: 0.75rem 0 0.35rem 0;
}

.gallery-item p {
  font-size: 0.95rem;
  color: #cccccc;
}

.gallery-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Placeholder styling until you add real images */

.placeholder {
  background: radial-gradient(circle at top, rgba(255, 107, 44, 0.5), transparent 55%),
              linear-gradient(135deg, #141419, #050506);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
  text-align: center;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 0.75rem;
  color: #e0e0e0;
}

.about-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: #d0d0d0;
}

.about-list li + li {
  margin-top: 0.35rem;
}

.about-photo {
  border-radius: 1.5rem;
  min-height: 260px;
  padding: 1rem;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  background: #101015;
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: #e0e0e0;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #050506;
  color: #f5f5f5;
  font-size: 0.95rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #ff6b2c;
}

.contact-info h3 {
  margin-bottom: 0.75rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: #d6d6d6;
}

.note-small {
  font-size: 0.85rem;
  color: #a0a0a0;
}

/* Footer */

.site-footer {
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  color: #a8a8a8;
}

/* Responsive */

@media (max-width: 800px) {
  .nav {
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .nav a {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero-content {
    padding: 4.5rem 0 3rem 0;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .header-inner {
    padding: 0.6rem 0;
  }
}
background-image: url("hero.jpg");

/* Ensure overlay never blocks clicks on buttons */
.hero .overlay {
  pointer-events: none;
}
/* Make anchor scrolling land below the fixed header */
.hero,
.section {
  scroll-margin-top: 90px;  /* you can tweak 70–100 if needed */
}
/* === Social feed inside gallery === */
.social-feed {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-feed h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.social-text {
  font-size: 0.95rem;
  color: #cfcfcf;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.social-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: #ff6b2c;
  color: #050506;
}

.social-info h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.social-info p {
  font-size: 0.85rem;
  color: #c3c3c3;
}

.social-embeds {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.social-embeds iframe,
.social-embeds blockquote {
  width: 100%;
  max-width: 100%;
}
/* Floating "Call Now" button (mobile focus) */
.call-now-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: none; /* hidden by default, shown on mobile */
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: #ff6b2c;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Show it only on mobile screens */
@media (max-width: 768px) {
  .call-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Floating "Text Us" (WhatsApp) button */
/* WhatsApp Button — left of Call Now, same line */
.whatsapp-btn {
  position: fixed;
  bottom: 16px;
  right: 140px;
  z-index: 200;
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366; /* Official WhatsApp green */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Show both buttons on mobile only */
@media (max-width: 768px) {
  .call-now-btn,
  .whatsapp-btn {
    display: flex;
  }
}
/* === GALLERY SLIDER === */
.gallery-slider {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #111;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .slide {
    height: 360px;
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* === VIDEO THUMBNAILS === */
.video-gallery {
  margin-top: 2.5rem;
}

.video-gallery h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.video-intro {
  font-size: 0.95rem;
  color: #d0d0d0;
  margin-bottom: 1.25rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.video-thumb {
  position: relative;
  display: block;
  border-radius: 0.9rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.video-thumb-image {
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background-size: cover;
  background-position: center;
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.7rem 0.8rem;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.video-label {
  font-size: 0.9rem;
  color: #f5f5f5;
}
/* Social icons in header */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1a1a1a;
}

.social-btn svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

/* Colors */
.social-btn.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn.fb {
  background: #1877F2; /* Facebook blue */
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .social-btn {
    width: 42px;
    height: 42px;
  }
  .social-btn svg {
    width: 22px;
    height: 22px;
  }
}
/* Adjust hero text position */
.hero-content {
  padding-top: 180px;  /* moves text lower */
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 140px; /* slightly lower for mobile */
  }
}
/* Social Media Buttons Section */
/* Social Media Buttons Section */
.social-buttons {
  text-align: center;
  margin-top: 3rem;
}

.social-buttons h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.social-buttons p {
  margin-bottom: 1.5rem;
  color: #ccc;
}

.social-btn-row {
  display: flex;
  justify-content: center;
  gap: 2rem;        /* More space between buttons */
  flex-wrap: wrap;
  padding-top: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;        /* More spacing inside the button */
  background: #222;
  padding: 0.75rem 1.5rem;   /* Wider button */
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;         /* Slightly bigger text */
  transition: 0.2s ease-in-out;
  min-width: 160px;          /* Forces width so they feel balanced */
  justify-content: center;
}

.social-btn img {
  width: 24px;
  height: 24px;
}

.instagram-btn:hover {
  background: #E1306C;
}

.facebook-btn:hover {
  background: #1877F2;
}
/* MENU SECTION */

.menu-section h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.menu-section .section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

/* Large visual menu blocks */

.menu-block {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.75rem;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-block-large {
  min-height: 320px;
}

.menu-block-overlay {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1)
  );
  max-width: 60%;
}

.menu-block h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.menu-block p {
  margin-bottom: 0.75rem;
}

.menu-block ul {
  padding-left: 1.1rem;
  margin: 0;
}

.menu-block li {
  margin-bottom: 0.25rem;
}

/* Sides & extras grid */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.menu-card {
  background: #181818;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.menu-card ul {
  padding-left: 1.1rem;
  margin: 0;
}

.menu-card li {
  margin-bottom: 0.25rem;
}

.menu-note {
  margin-top: 1.5rem;
  text-align: center;
}

/* Responsive adjustments for mobile */

@media (max-width: 768px) {
  .menu-block-overlay {
    max-width: 100%;
    padding: 1.25rem;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.1)
    );
  }

  .menu-block-large {
    min-height: 260px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}
