:root {
  --bg-dark: #000000;
  --panel: #111827;
  --accent-a: #f59e0b;
  --accent-b: #ec4899;
  --text-muted: #d1d5db;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  background: url("../images/hero-bg2.png") center / cover no-repeat;
    background-attachment: fixed;
  color: #fff;
}

/* Header */
.header {
  background: rgba(0,0,0,0.8);
  width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1.5rem;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  height: 28px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 2px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
}

.nav .cta {
  padding: 0.45rem 1rem;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
}




.nav .cta:hover {
  opacity: 0.9;
}


.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: white;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
    margin-top: -100px;
}



/* Hero Overlay
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
*/


.hero-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  padding: 2rem;
}

.hero-logo {
  width: 369px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 4px;
}

.hero h1 span {
  font-size: 1.2rem;
  opacity: 0.8;
  letter-spacing: 6px;
}

.hero p {
  margin: 1.5rem 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
}



/* === PORTFOLIO SECTION === */
.portfolio {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 2rem;
    text-align: center;
}




.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Gallery items are hidden initially for scroll animation */
.gallery .item {
  background: var(--panel);
    border-radius: 10px;
    overflow: hidden;
    opacity: 100;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding-bottom: 15px;
}

/* Active class makes them fade and slide in 
.gallery .item.visible {
    opacity: 1;
    transform: translateY(0);
}
*/


/* Services */
.services {
  padding: 5rem 2rem;
  text-align: center;
}

.services h2 {
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--panel);
  padding: 2rem;
  border-radius: 16px;
}




/* === LIGHTBOX STYLES === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.lightbox-caption {
    color: #fff;
    margin-top: 15px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2em;
    color: #fff;
    cursor: pointer;
}

/* === LIGHTBOX NAVIGATION ARROWS === */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5em;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transition: color 0.3s;
}

.lightbox-arrow:hover {
  color: #f04e23;
}

#prevBtn {
  left: 30px;
}

#nextBtn {
  right: 30px;
}






/* contact form 


.contact-form {
  margin: 24px;
  background: #000;
  padding: 24px;
  width: 320px;
  border-radius: 8px;
  text-align: center;
}

.contact-form h2 {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 4px;
  border: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  opacity: 0.85;
}

#status {
  margin-top: 10px;
  font-size: 14px;
}

end old contact form */




/* new contact form */

.contact-form {
  width: 360px;
  padding: 32px;
  background: #111827;
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 80px;
  margin-top: 100px;
}

.contact-form h2 {
  margin-bottom: 24px;
  letter-spacing: 1px;
  font-size: 20px;
  text-align: center;
}

.field {
  margin-bottom: 16px;
  position: relative;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  background: #000000;
  border: 1px solid #333;
  color: #fff;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #777;
}

input:focus,
textarea:focus {
  border-color: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 8px;
}

button:hover {
  opacity: 0.9;
}

.error {
  display: none;
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 6px;
}

.field.invalid input,
.field.invalid textarea {
  border-color: #ff4d4d;
}

#status {
  margin-top: 16px;
  font-size: 14px;
}



/* end new contact form */






/* Mobile */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    position: absolute;
    top: 60px;
    flex-direction: column;
    background: #000000;
    padding: 1.5rem;
    border-radius: 12px;
  }

  .nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

    
      
  body {
    background: #000000;
    background-attachment: fixed;
  }

    
    
  .hero h1 {
    font-size: 2.2rem;
  }
}
