*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Inter;
background:#0f172a;
color:white;
line-height:1.6;
}

.container{
width:min(1200px,90%);
margin:auto;
}

header{
min-height:100vh;
}

.site-header {
	background-color:#020617;
	border-bottom:1px solid #001a33;
}

nav{
display:flex;
justify-content:space-between;
padding:32px 0;
}

nav ul{
display:flex;
gap:40px;
list-style:none;
align-items:center;
}

nav ul a:hover{
color:#d4af37;
}

a{
color:white;
text-decoration:none;
}

hr {
	border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.logo{
font-size:28px;
font-weight:800;
}

.hero{
display:flex;
align-items:center;
height:80vh;
background-image:url('images/wand-magic-dust-trail-cropped.png');
background-repeat:no-repeat;
background-size:100%;
}

.hero h1{
font-size:72px;
line-height:1;
margin-bottom:24px;
}

.hero p{
max-width:700px;
font-size:22px;
opacity:.8;
}

.gold {
	color:#d4af37;
}

.btn{
display:inline-block;
margin-top:40px;
padding:18px 40px;
background:#d4af37;
color:black;
border-radius:10px;
font-weight:700;
}

section{
padding:120px 0;
}

h2{
font-size:48px;
margin-bottom:40px;
}

.large-text {
	font-size: 22px;
}

.intro{
font-size:22px;
max-width:900px;
}

.skills{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.card{
background:#172036;
padding:40px;
border-radius:18px;
}

.card h3{
margin-bottom:20px;
}

.profile {
	display:flex;
}

.profile {
	display:grid;
	grid-template-columns:20% 1fr;
	gap:30px;
}

@media (max-width:1000px) {
	.profile {
		grid-template-columns:30% 1fr;
	}
}

.profile-pic {
	display: flex;
    align-items: center;
}

.profile .profile-pic img {
	border-radius:50%;
	width:200px;
	height:200px;
}

.videos {
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:50px;
}

.videos iframe {
width:100%;
height:auto;
min-height:315px;
}

/* Core button styling */
.shine-button {
  position: relative;
  overflow: hidden; /* Hides the shine when it is outside the button */
  padding: 15px 35px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background-color: #d4af37;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

/* Base style for the shine element */
.shine-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%; /* Starts completely hidden on the left */
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg); /* Angles the shine line */
  transition: left 0.6s ease; /* Controls the speed of the flash */
}

/* Moves the shine across the button on hover */
.shine-button:hover::after {
  left: 150%; /* Triggers the transition to the right side */
}

/* ==========================
Ecommerce Showcase
========================== */

#ecommerce{

padding:140px 0;

}

.section-header{

margin-bottom:80px;

}

.eyebrow{

display:inline-block;

margin-bottom:18px;

color:#d4af37;

font-size:14px;

letter-spacing:3px;

}

.section-header h2{

font-size:56px;

margin-bottom:20px;

}

.section-header p{

font-size:22px;

}


.project-grid{

display:grid;

grid-template-columns:

repeat(2,1fr);

gap:36px;

}


.project-card{

display:block;

background:#172036;

border-radius:24px;

overflow:hidden;

transition:.4s;

text-decoration:none;

}


.project-card:hover{

transform:
translateY(-8px);

box-shadow:
0 40px 80px rgba(0,0,0,.25);

}


.project-card img{

width:100%;

height:350px;

object-fit:cover;

display:block;

transition:.6s;

}


.project-card:hover img{

transform:scale(1.04);

}


.content{

padding:36px;

}


.tag{

display:inline-block;

padding:8px 14px;

background:

rgba(212,175,55,.12);

border:

1px solid rgba(212,175,55,.3);

color:#d4af37;

border-radius:999px;

font-size:12px;

margin-bottom:20px;

}


.content h3{

font-size:34px;

margin-bottom:18px;

color:white;

}


.content p{


font-size:18px;

line-height:1.7;

margin-bottom:28px;

}


.link{

color:#d4af37;

font-weight:700;

}


@media(max-width:900px){

.project-grid{

grid-template-columns:1fr;

}

.section-header h2{

font-size:42px;

}

.project-card img{

height:280px;

}

}

@media (max-width: 768px) {
	.profile {
		grid-template-columns: 1fr;
	}
	.profile-pic {
		justify-content: center;
	}
	.about-text {
		display:flex;
		flex-direction:column;
		justify-content: center;
		align-items: center;
	}
	.videos {
        grid-template-columns: 1fr;
	}
}

.projects{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.project{
background:#172036;
padding:50px;
border-radius:18px;
}

.showcase{
background:#172036;
}

#contact{
text-align:center;
}

footer{
padding:60px;
background-color:#020617;
border-top:1px solid #001a33;
text-align:center;
opacity:.5;
}

#scrollTopBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d4af37;
	border-radius: 50%;
	background-color: #0f172a;
	color: #d4af37;
	cursor: pointer;
	z-index: 999;

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

#scrollTopBtn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#scrollTopBtn:hover {
	background-color: #d4af37;
	color: #0f172a;
}

@media (max-width: 600px) {
	#scrollTopBtn {
		bottom: 20px;
		right: 20px;
		width: 42px;
		height: 42px;
	}
}

@media(max-width:900px){

.hero h1{
font-size:48px;
}

.skills,
.projects{
grid-template-columns:1fr;
}

nav{
flex-direction:column;
gap:20px;
}

}