/* Ultra Minimal Variables */
:root {
  --text-primary: #ffffff;
  --text-secondary: #999999;
  --border-color: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto Mono', monospace;
}

html {
  background: url('./img/bag.webp') center center/cover no-repeat fixed;
  min-height: 100%;
}

body {
  background: url('./img/bag.webp') center center/cover no-repeat fixed;
  padding-top: 80px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-family: 'Roboto Mono', monospace;
}

/* Mobile body padding adjustment */
@media screen and (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

/* Header & Navbar - Simple Black */
.header {
  background: #000000;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  padding: 0;
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  height: 80px;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

/* Responsive logo text */
@media screen and (max-width: 480px) {
  .logo-text {
    font-size: 16px;
  }
}

/* Hamburger menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 5px auto;
}

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

.nav-item {
  margin: 0;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  font-size: 16px;
}

.nav-link:hover {
  background: #111111;
}

/* Mobile menu */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #000000;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    left: 0;
  }

  .navbar {
    height: 70px;
  }
}

/* Home section */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 20px;
  background: transparent;
}

.home-content {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.company-title h1 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.company-title h2 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.company-title p {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--text-secondary);
}

/* About section */
.about {
  padding: 30px 20px;
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-text {
  line-height: 1.6;
  margin-bottom: 40px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.feature-card {
  border: 1px solid var(--border-color);
  padding: 10px;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.image-stack {
  position: relative;
}

.image-1, .image-2 {
  margin-bottom: 20px;
}

.image-1 img, .image-2 img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-color);
}

/* Services section */
.services {
  padding: 30px 20px;
}

.services-container {
  max-width: 1440px;
  margin: 0 auto;
}

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

.service-card {
  border: 1px solid var(--border-color);
  padding: 15px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: 14px;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 2px 0;
  color: var(--text-secondary);
  font-size: 13px;
}

/* Portfolio section */
.portfolio {
  padding: 30px 20px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #111111;
  color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ffffff;
  color: #000000;
}

.portfolio-carousel-container {
  position: relative;
  overflow: hidden;
}

.portfolio-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.portfolio-item {
  border: 1px solid var(--border-color);
  margin-bottom: 8px;
}

.portfolio-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.portfolio-info {
  padding: 10px;
}

.portfolio-info h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: 12px;
}

.carousel-btn {
  display: none;
}

.carousel-dots {
  display: none;
}

/* Project references section */
.project-references {
  padding: 30px 20px;
}

.references-categories {
  margin-top: 40px;
}

.category h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #ffffff;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.reference-card {
  border: 1px solid var(--border-color);
  padding: 12px;
  margin-bottom: 8px;
}

.reference-logo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 10px;
}

.reference-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.reference-card p {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 13px;
}

.reference-details {
  list-style: none;
  margin-bottom: 8px;
  padding-left: 0;
}

.reference-details li {
  padding: 1px 0;
  color: var(--text-secondary);
  font-size: 12px;
}

.completion-date {
  color: var(--text-secondary);
  font-size: 11px;
}

.view-all-container {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 30px;
  border: 1px solid var(--border-color);
}

.view-all-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Contact section */
.contact {
  padding: 30px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  border: 1px solid var(--border-color);
  padding: 12px;
  text-align: center;
  margin-bottom: 8px;
}

.contact-icon {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 13px;
}

.location-link,
.email-link {
  color: #cccccc;
  text-decoration: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #222222;
  color: #ffffff;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
}

.map-container {
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  border: 1px solid var(--border-color);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid var(--border-color);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
}

/* WhatsApp button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  text-decoration: none;
  z-index: 1000;
}

.tooltip {
  display: none;
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 50px;
  height: 50px;
  background: #111111;
  color: #ffffff;
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: none;
  z-index: 1000;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .portfolio-carousel {
    grid-template-columns: 1fr;
  }

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

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

  .scroll-top-btn {
    bottom: 100px;
    right: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .references-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Simple hidden class */
.hidden {
  display: none !important;
}

/* References page styles */
.references-page {
  padding: 30px 20px;
}

.references-page .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.references-page .section-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.references-page .section-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.references-categories h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.references-categories .references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

/* Residential projects page */
.residential-page {
  padding: 30px 20px;
}

.residential-page .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.residential-page .section-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.residential-page .section-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Hospitality projects page */
.hospitality-page {
  padding: 30px 20px;
}

.hospitality-page .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.hospitality-page .section-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.hospitality-page .section-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Entertainment venues page */
.entertainment-page {
  padding: 30px 20px;
}

.entertainment-page .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.entertainment-page .section-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.entertainment-page .section-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Back button style */
.back-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 10px 20px;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 14px;
}

.back-btn:hover {
  background: var(--border-color);
}

/* Remove all animations */
* {
  animation: none !important;
  transition: none !important;
}