:root {
  --bg: #020408; 
  --blue: #6ee7ff;
  --yellow: #fbbf24;
  --text: #cbd5e1;
}
    
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and background */
body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at center, #07121a 0%, #020408 70%);
  color: var(--text);
  overflow-x: hidden;
}

/* SCROLLBAR (unchanged) */
html, body {
  min-height: 100vh;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) #1a1a1a;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 16px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #1a1a1a;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 6px;
  border: none;
}

/* Wrapper */
.wrapper {
  width: 100%;
  margin: auto;
  padding: 0 30px;
}

/* NAV */
nav {
  position: fixed; 
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: rgba(98, 204, 237, 0.1);
  height: 55px;
  width: 100%; 
  top: 0;
  left: 0;
  z-index: 1000;
   backdrop-filter: blur(8px);         
  -webkit-backdrop-filter: blur(8px); 
}

nav img{
	  height: 20px;
}

.logo {
  font-family: "Orbitron";
  color: var(--blue);
}

.nav-links a {
  margin-left: 20px;
  font-size: 16px;
  color: #6ee7ff;
  text-decoration: none;
  opacity: 0.8;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffb300; 
}

#about {
  scroll-margin-top: 100px; 
}

#experience {
  scroll-margin-top: 100px; 
}

#designers {
 scroll-margin-top: 100px;
}

/* HERO SECTION */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 120px 0 0 0;
}

.hero-left,
.hero-right {
  flex: 1;
  position: relative;
}

.hero-right {
  display: flex;
  flex-direction: column;   
  gap: 20px;  
  align-items: center;
  flex: 1;
  position: relative; 
}

.role {
  color: var(--blue);
  font-size: 32px;
  margin-bottom: 20px;
  padding-left: 55px;
}

.image-placeholder {
  width: 80%;
  max-width: 800px;
  background: gray;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto; 
}

.image-placeholder img {
  width: 100%;
  height: auto;
  object-fit: block;
}

.name {
  color: var(--yellow);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 25px;
  text-align: right;
  padding-right: 70px;
  padding-top: 40px;
  white-space: nowrap;
  max-width: 100%; 
}

.bio {
  line-height: 1.6;
  max-width: 430px;
  text-align: left; 
  margin: 0;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
  width: 100%; 
  position: relative;
}

.btn2 {
  padding: 8px 16px;
  background: var(--blue);    
  color: black; 
  cursor: pointer;
  border-radius: 10px; 
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-block; 
}

.btn2:hover {
  background: var(--yellow);
  transform: scale(1.05);   
  box-shadow: 0 0 30px 8px rgba(110, 231, 255, 0.3);
}

/* PROJECTS */
.projects {
  padding: 60px;
  color: var(--blue);
}

.projects h1 {
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 30px;
  padding-left: 40px;
  padding-top: 20px;
}

.project-card {
  min-width: 70%;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative; 
  height: 500px;
  transition: transform 0.3s;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Frosted glass overlay using ::before */
.project-card span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);

  color: white;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
 
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  width: 90%;
}

.project-card:hover span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Hover effect */
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  transition: all 0.3s ease;
  z-index: 1;
  opacity:0;
}

.project-card:hover::before {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  opacity:1;
}

.project-card:hover img {
  transform: scale(1.05);       
  filter: brightness(0.7);     
}

/* Scroll container remains unchanged */
.scroll-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* HERO SIDE IMAGES (optional layering) */
.side-img {
  position: absolute;
  z-index: 1;
}

.side-img.left {
  top: 50%;
  left: -7vw;
  width: 18vw;
  transform: translateY(-50%);
}

.side-img.right {
  top: 30%;
  right: -7vw;
  width: 18vw;
}

/*Decorations*/
.g-1 {
margin-top: -65px;
margin-left: -10px;
margin-bottom: 20px;
}

.g-2 {
margin-right: -160px;
margin-bottom: -90px;
margin-top: -30px;
} 

.g-4 {
margin-top: -80px;
margin-left: -20px;
margin-bottom: -50px;
}

.g-5 {
margin-left: -25px;
margin-bottom: 10px;
margin-top: -60px;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: rgba(98, 204, 237, 0.1);
}

footer .footer-right {
  display: flex;         
  gap: 15px;              
}

footer .footer-right img {
  width: 25px;            
  height: 25px;
  transition: transform 0.3s, opacity 0.3s;
}

footer .footer-right a img:hover {
  transform: scale(1.1);  
}

footer .footer-left {
  color: var(--blue);
  font-weight: bold; 
}


.social-icont img: {
  content: url("images/tic_icon.png"); 
}

.social-icont img:hover {
  content: url("images/ticOrange_logo.png"); 
}

.social-iconi img: {
  content: url("images/insta_icon.png");
}

.social-iconi img:hover {
  content: url("images/instaOrange_logo.png");
}

