/* BODY & GLOBAL */
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0b0c10;
    color: white;
    overflow-x: hidden;
}


.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.glass-box {

    background: rgba(74, 74, 74, 0.05);
    padding: 20px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.email {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}


/* --- GLASS EFFECT --- */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* --- NAV BAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem auto;
    padding: 1rem;
    width: 90%;
}

.nav-links a {
    margin-left: 1.5rem;
    color: white;
    font-weight: 500;
    text-decoration: none;
}
.nav-links a:hover {
    color: #bdd0d0;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Mobile toggle button (hidden on desktop) */
.nav-toggle {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color:white;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

/* --- CONTENT --- */
.content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2.5rem;
}

.content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

/* --- FOOTER --- */
.footer {
    width: 90%;
    margin: 4rem auto 2rem;
    padding: 1rem;
    text-align: center;
    color: #aaa;
}

/* --- ABSTRACT BACKGROUND --- */
.background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px;
    height: 400px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
    animation: float 15s ease-in-out infinite alternate;
}

.blob1 {
    background: linear-gradient(135deg, #ff00ff, #ff4d00);
    top: -150px;
    left: -150px;
}

.blob2 {
    background: linear-gradient(135deg, #00ffff, #0044ff);
    bottom: -150px;
    right: -150px;
}

.blob3 {
    background: linear-gradient(135deg, #fffb00, #ff00aa);
    top: 40%;
    left: 50%;
}

/* --- FLOAT ANIMATION --- */
@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(40px) translateX(30px); }
    100% { transform: translateY(0px) translateX(0px); }
}

html, body {
    height: 100%;
    margin: 0;
}

/* Wrapper stretches to full viewport height */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* full height */
}

/* Content stays natural height */
main.content {
    margin: 3rem auto;
    padding: 2.5rem;
    max-width: 900px;
    margin-bottom: 100px;
    min-width: 40%;
}

/* Footer sticks to bottom when content is short */
footer.footer {
    margin-top: auto;   /* pushes footer to bottom */
}
.logo-img {
    height: 30px;      /* adjust as needed */
    width: auto;
    display: block;
}


.render-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: minmax(320px, 1fr);
    gap: 1.5rem;
}

.render-grid img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.render-grid img:hover {
    transform: scale(1.01);
}


.about-text {
font-weight: 600;
  letter-spacing: 0.06rem;
  color: #f5f5f5;
  opacity: 0.85;
  margin-bottom: 70px !important;
  font-size: 1.3rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #e5e5e5;
}

.contact-icon {
    width: 26px;
    height: 26px;
    stroke: #bdd0d0;   /* neon cyan matches high-tech aesthetic */
    margin-top: -60px;
}

.blob1 {
    background: radial-gradient(circle at 30% 30%, #1c335e, #30476f);
    background: radial-gradient(circle at 30% 30%, #15181e, #30476f);
}

.blob2 {
    background: radial-gradient(circle at 70% 70%, #0f2027, #203a43, #2c5364);
}

.blob3 {
    background: radial-gradient(circle at 50% 50%, #334b5b, #101315);
}

.hero-tagline {
  text-transform: uppercase;
  font-size: clamp(1.4rem, 4vw, 3.3rem);
  letter-spacing: 0.25rem;
  color: #f5f5f5;
  text-align: center;
  opacity: 0.85;
  text-align:center;
  margin-bottom:70px !important;
}


.hero-tagline.animate {
  animation: fadeUp 1.2s ease-out;
}


@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px); /* smaller movement */
  }
  60% {
    opacity: 1;
    transform: translateY(5px);  /* slows into place */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.render-thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none; /* hides scrollbar in Firefox */
  margin-top:50px;
}

.render-thumbs::-webkit-scrollbar {
  display: none; /* hides scrollbar in Chrome/Safari */
}

.render-thumbs img {
  height: 150px;          /* consistent height */
  width: auto;
  border-radius: 10px;    /* optional for modern look */
  object-fit: cover;
  background: rgb(17,17,17); /* background for Fusion renders */
  padding: 4px;           /* subtle padding */
}

.auto-gallery {
  overflow: hidden;
}

.track {
  display: flex;
  gap: 6rem;
  animation: sway 44s ease-in-out infinite alternate;
}

.track img {
  height: 150px;
  width: auto;
  border-radius: 10px;
}

@keyframes sway {
  from { transform: translateX(0); }
  to   { transform: translateX(-40%); } /* adjust for number of images */
}

.highlight {
  color: #b5b5b5;
  color:#5ab2ff;
}

@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 80px;
    right: 20px;
    background: #1c1c1c;
    display: none;        /* IMPORTANT */
    flex-direction: column;
    width: 150px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99;
  }

  .nav-links.show {
    display: flex;        /* shows menu when toggled */
  }

  .nav-toggle {
    display: block;       /* show hamburger icon */
  }
}

.render-thumbs {
  width: 66vw;      /* exactly full viewport width */
  max-width: 100vw;  /* prevent overflow */
  overflow: hidden;  /* hide any excess from animation */
}
