: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;
}

/* HEADER */
.project-header {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: start;
  gap: 2rem;
  padding: 120px 0 0px;
}

.designer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
}

h1 {
  color: var(--blue);
  font-size: 32px;
  text-decoration: none;
}

.designer-name {
  margin-bottom: 20px;
  padding-left: 56px;
}

.g-1 {
  margin-top: -43px;
  margin-left: -10px;
  margin-bottom: -60px;
}

.project-title {
  flex-direction: column;
  text-align: right;
  padding-top: 30px;           
}

.project-title h3 {
  color: var(--yellow);
  font-size: 36px;        
  font-weight: 300;
	 padding-right: 70px; 
}

.project-title p {
  color: var(--text);
  margin-top: 12px;  
  margin-bottom: 10px;
  margin-right: 60px; 
  white-space: wrap;
}

.g-2 {
  margin-top: 15px;
  margin-right: 25px;
  margin-bottom: -85px;
}

.g-5 {
margin-top: -20px;
margin-left: -70px;
margin-bottom: 0px;
}

/* IMAGE */
.project-image {
  width: 100%;       
  padding: 0 60px;      
}

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

/* DESCRIPTION */
.project-description {
  max-width: 1200px;
  text-align: left;
} 

.project-description p {
  line-height: 1.3;
  font-size: 16px;
  color: var(--text); 
  padding: 40px 180px;	
}

/* ARROWS CONTAINER */
.project-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 40px 60px;
}

.project-nav .arrow.left {
  justify-self: start;
}

.project-nav .arrow.right {
  justify-self: end;
}

.project-nav .btn3 {
  justify-self: center;
}
/* ARROWS */
.arrow {
  font-size: 50px; 
  color: var(--blue);
  text-decoration: none;
  transition: 0.3s;
}

.arrow:hover {
  transform: scale(1.2);
  color: var(--yellow);
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 20px;
}

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

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

/* 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");
}
