/* ===== General ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Cairo', sans-serif;
}

body {
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */
header {
  background: #000;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 32px;
  font-weight: 900;
  color: gold;
}

nav ul {
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}

nav ul li a:hover {
  color: gold;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: gold;
}

/* ===== Hero ===== */
#hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('img/WhatsApp Image 2025-10-03 at 9.39.21 PM.jpeg') no-repeat center center/cover;
  filter: blur(3px) brightness(0.7);
  z-index: 0;
}

#hero .overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 60px;
  color: gold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 30px;
  color: #fff;
}

.btn {
  padding: 12px 30px;
  background: gold;
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: gold;
  transform: scale(1.05);
}

/* ===== About / Services ===== */
#about {
  text-align: center;
  padding: 100px 20px;
}

#about h2 {
  color: gold;
  font-size: 40px;
  margin-bottom: 30px;
}

#about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
}

section {
  padding: 100px 0;
}

h2 {
  font-size: 40px;
  color: gold;
  margin-bottom: 40px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.card {
  background: rgba(255,215,0,0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.card h3 {
  font-size: 20px;
  color: #fff;
}

.card:hover {
  background: rgba(255,215,0,0.2);
  transform: translateY(-5px);
}

/* ===== Projects ===== */
.project {
  margin: 70px 0;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.project.show {
  opacity: 1;
  transform: translateY(0);
}

.project-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.project-img {
  width: 45%;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255,215,0,0.6);
}

.project-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: gold;
  font-size: 28px;
  font-weight: 900;
  background: rgba(0,0,0,0.6);
  padding: 12px 30px;
  border-radius: 12px;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 0 5px gold, 0 0 10px gold, 0 0 20px #fff, 0 0 30px gold;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { text-shadow: 0 0 5px gold, 0 0 10px gold, 0 0 20px #fff, 0 0 30px gold; }
  100% { text-shadow: 0 0 10px gold, 0 0 20px gold, 0 0 30px #fff, 0 0 40px gold; }
}

/* ===== Lightbox ===== */
#lightbox {
  display: none;
  position: fixed;
  top:0; left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  overflow-y: auto;
}

#lightboxContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

#lightboxContent img {
  max-width: 45%;
  margin: 10px;
  border-radius: 15px;
}

#lightboxClose {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 50px;
  color: gold;
  cursor: pointer;
}

/* ===== Contact ===== */
.contact-section {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

.contact-title {
  color: gold;
  font-size: 36px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
  font-size: 20px;
}

.contact-item .icon {
  font-size: 28px;
}

/* ===== Footer ===== */
footer {
  background: #000;
  text-align: center;
  padding: 30px 0;
  color: #fff;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media(max-width:768px){
  nav ul { 
    display:none; 
    flex-direction:column; 
    background:#000; 
    position:absolute; 
    top:70px; 
    right:0; 
    width:200px; 
    padding:20px; 
    border-radius:0 0 0 10px;
  }
  nav ul.active { display:flex; }
  .menu-toggle { display:block; }

  .project-images { 
    flex-direction: column;  
    gap: 15px; 
  }

  .project-img { 
    width: 100%;  
    max-width: 100%;
  }

  #lightboxContent img { max-width: 80%; }
}
