* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: #0a0b0f;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* ---------- BACKGROUND TEXTURE ---------- */
.background-texture {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.01), transparent 60%);
    animation: moveTexture 20s infinite alternate ease-in-out;
    z-index: -2;
}

@keyframes moveTexture {
    from { transform: translateY(-20px); }
    to { transform: translateY(20px); }
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* ---------- HEADER ---------- */
header {
    position: fixed;
    width: 100%;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(6px);
    padding: 15px 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo { height: 42px; }

nav a {
    color: #aaa;
    text-decoration: none;
    margin-left: 25px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover { color: #fff; }

/* ---------- HERO VIDEO ---------- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

.hero-content { position: relative; z-index: 2; }

.brand {
    display: flex;
    align-items: center;
    gap: 15px; /* space between logo and text */
}

.brand-title2 {
    font-family: 'Wide Latin', serif;
    font-size: 36px;
    letter-spacing: 4px;
    margin: 0; /* remove default paragraph margin */
}
.brand-title-hero{
    font-family: 'Wide Latin', serif;
    font-size: 56px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 20px;
    color: #bdbdbd;
    max-width: 700px;
    margin: auto;
}

.btn {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 34px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn:hover { transform: translateY(-2px); background: #ddd; }

/* ---------- Light sweep ---------- */
.light-sweep {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.03) 100%);
    transform: rotate(25deg);
    animation: sweep 8s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes sweep {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

/* ---------- SECTION STYLING ---------- */
section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Fade-in scroll animation */
.fade-section { opacity: 0; transform: translateY(40px); transition: all 1.2s ease; }
.fade-section.visible { opacity: 1; transform: translateY(0); }

/* ---------- Section backgrounds ---------- */
#services {
    background: linear-gradient(135deg, #0a0b0f, #1b1d24);
}

#work {
    background: linear-gradient(135deg, #0b0c0f, #1a1c22);
}

#contact {
    background: linear-gradient(135deg, #0c0d10, #14151a);
}

/* Optional animated gradient overlay for cinematic effect */
#work::before, #services::before, #contact::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.01) 100%);
    animation: slowMove 40s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes slowMove {
    0% { transform: translate(0,0) rotate(45deg); }
    50% { transform: translate(50px,50px) rotate(45deg); }
    100% { transform: translate(0,0) rotate(45deg); }
}

/* ---------- Services ---------- */
.services { display: flex; gap: 60px; flex-wrap: wrap; margin-top: 40px; }
.service-box { flex: 1; min-width: 300px; }
.service-box ul { margin-top: 15px; padding-left: 18px; color: #bdbdbd; }

/* ---------- Showcase ---------- */
.showcase iframe {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ---------- Features ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.feature-item {
    background: #555866;
    padding: 25px;
    border-radius: 6px;
    transition: 0.3s;
}
.feature-item:hover { background: #707786; transform: translateY(-4px); }

/* ---------- Contact ---------- */
.contact-section {
  background: #0e0e0e;
  padding: 100px 10%;
  color: white;
  background: radial-gradient(circle at center, #111 0%, #000 70%);
}

.contact-container {
  display: flex;
  align-items: center;       /* vertical alignment */
  justify-content: center;   /* keeps section centred */
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  display: flex;
  justify-content: flex-end;   /* pushes text toward image */
}

.contact-info {
  text-align: right;           /* aligns text toward image */
  max-width: 400px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin: 8px 0;
  opacity: 0.85;
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.contact-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-left {
    justify-content: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-right {
    justify-content: center;
  }
}
