* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "General Sans";
    background: black;
}


#minicircle{
    position:absolute;
    z-index: 99999;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.floaty {
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.bounding{
    width:fit-content;
    overflow:hidden;
}
.bounding .boundingelement{
    transform: translateY(100%);
}
.hover-lift {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: scale(105%);
  
}


.center-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit; /* keeps the current color */
}

.center-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.center-underline:hover::after {
  width: 100%;
}


html,
body {
    width: 100%;
    height: 100%;
}
body::selection{
    background: #ffffff;
    color: #000000;
}

#main {
    width: 100%;
    height: auto;
}

#hero {
    position: relative;
    color: #fff;
    width: 100%;
    height: 100vh;
    background-color: black;
}

#nav {
    width: 100%;
    padding: 20px 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px
}

#heading {
    margin-top: 75px;
    letter-spacing: 2px;
}

#heading h1 {
    margin-left: 30px;
    opacity: 0.65;
    line-height: 1;
    font-family: "General Sans Regular";
    font-size: 10vw;
    text-transform: upper-case;
    font-weight:1200;
}

#heading #secondh1 {
    margin-left: 130px;
}

.blocktext {
    width: fit-content;
    Display:flex;
    flex-direction: column;
    align-items: end;

}

.blocktext h5 {
    text-align: right;
    text-transform: uppercase;
    font-size: 15px;
}

#smallheadings {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 100px;
    padding: 30px;

}

#smallheadings h5 {
    text-align: right;
    text-transform: uppercase;
    margin-top: .5px;
    font-size: 1.5vw;
    letter-spacing: 1px;
}

#herofooter {
    padding: 0 2vw;
    position: absolute;
    bottom: 3%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#herofooter a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;

}

#herofooter #iconset {
    display: flex;
    gap: 5px;
}

#herofooter .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #888;
}
#herofooter .circle i{
    background: #888;
}

#second {
    font-family: "General Sans Regular";
    color: #fff;
    padding: 200px 40px;
    background: black;
    width: 100%;
    height: 100vh;
}

#second .elem {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #888;
    padding: 3.5vw 3vw;
    padding-right: 0;
    position: relative;
    
}

.elem h1 {
    font-size: 7.6vw;
    text-transform: uppercase;
    opacity: 0.65;
}

.elemlast {
    border-bottom: 1px solid #888;
}

.elem img {
    opacity:0;
    height: 140%;
    position: absolute;
    z-index: 999;
    
    

}
#about {
    margin-top: 20vw;
    margin-bottom: 50px;
    padding: 10vw 15vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    flex-wrap: wrap;}

#imageabout {
    flex: 1;
    display: flex;
    justify-content: right; /* this will change on mobile */
}
#imageabout img {
    border-radius: 50%;
    height: 25vw;
    width: 25vw;
}

#textabout {
    font-size: smaller;
    flex: 1;
    max-width: 600px;
    color: #fff;
    text-align: left;
    letter-spacing: 1px;
    line-height: 20px;
}
#textabout h5 {
    flex: 1;
    max-width: 600px;
    color: #888;
}
#textabout a {
    display: inline-block;
    margin: 1.5vw 0;
    padding: 2px 10px;
    color: #fff;
    text-decoration: none;
    background: #000;
    border: 1px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#textabout a:hover {
    background: #fff;
    color: #000;
}


@media (max-width: 768px) {
    #about {
        flex-direction: column;
        align-items: flex-start; /* ensures left alignment */
    }

    #imageabout {
        justify-content: flex-start; /* left align the image */
        width: 100%; /* make sure it spans the full width */
    }

    #imageabout img {
        height: 30vw;
        width: 30vw;
    }

    #textabout {
        padding-top: 20px;
        text-align: left;
    }
}

#featured {
  padding:10vw 10vw;
}

#featured .fheading h1 {
  color: white;
  line-height: 1;
  font-weight: 400;
  font-size: 10vw;
}
#featured .fheading h1:nth-child(2) {
  opacity: 0.65;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  
}


#whatelse{
    color:#fff;
    padding-bottom:7vw;
    padding:30px 40px;
}

#whatelse h5{
    text-transform: uppercase;
    opacity:0.6;
}

#whatelse a{
    text-decoration: none;
    font-size: 14px;
    margin-top:10px;
}


#whatelse h3 a {
  text-decoration: none;
  color: white; /* or any color you want */
  text-transform: uppercase;
  font-size: 14px;
}

.letsconnect{
    background-color: transparent;
    padding: 40px 40px;
    text-align: left;
    width:80%;
    
    
}
.letsconnect h2{
    background-color: transparent;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 9vw;
    opacity:1;
    font-weight: 900;
    text-transform: uppercase;
    color:transparent;
    -webkit-text-stroke: 1px #ffffff;
    letter-spacing: 2px;
line-height: 1.1;
transition: all 0.3s ease;

}

.label{
    color: #000000;
    background: #ffffff;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.yellow{
    font-size: 7vw;
    font-weight: 300;
    background: yellow;
    color:#000000;
    -webkit-text-stroke: 1px #000000;
}

#footer{
    height: auto;
    color:#fff;
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    
    
}
#left{
display: flex;
gap: 20px
}
#right{
    display:flex;
    gap:30px;

}
#footer a{
    color:#fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight:  500;
}


.distort-hover {
  position: relative;
  display: inline-block;
  color: white;
  font-size: 5vw;
  font-weight: 800;
  overflow: hidden;
  --x: 50%;
  --y: 50%;
  transition: all 0.3s ease;
}

.distort-hover::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: rgb(255, 0, 0);
  mix-blend-mode: difference;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transform: translate(0, 0);
  clip-path: circle(15vw at var(--x) var(--y));
  transition: clip-path 0.2s ease;
  font-weight: inherit;
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .photogallery {
    column-count: 3;
  }
}

@media (max-width: 480px) {
  .photogallery {
    column-count: 1;
  }
}


.magnet-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.magnet-btn-wrapper {
  position: relative;
  display: inline-block;
}
#experience {
  width: 100%;
  padding: 10vw 10vw;
  display: flex;
  flex-direction: column;
  gap: 5vw;
  color: #fff;
  background-color: black; /* keep entire section black */
}

#experience .section-title {
  font-size: 8vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  margin-bottom: 5vw;
  transition: all 0.4s ease-in-out; /* smooth transition */
}

#experience .section-title:hover {
  font-weight: 1000;
  color: white;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5); /* subtle glow/shadow */
  transform: scale(1.05); /* optional slight scaling for pop effect */
}

/* Card styling */
.experience-card {
  display: flex;
  align-items: center;
  gap: 5vw;
  padding: 3vw;
  background-color: #111; /* dark card */
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px); /* subtle hover effect */
}

.exp-logo img {
  width: 15vw;
  height: 100%;
  border-radius: 10px;
  background-color: #111;
}
.exp-details{
    background-color: #111;
}

.exp-details h2 {
  font-size: 4vw;
  font-weight: 700;
  margin-bottom: 1vw;
  background-color: #111;
}

.exp-details p {
  font-size: 1.2vw;
  max-width: 600px;
  line-height: 1.5;
  color: #ccc;
  background-color: #111;
}

.exp-timeline {
  display: block;
  margin-top: 0.5vw;
  font-size: 1vw;
  font-weight: 500;
  color: #aaa;
  background-color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .experience-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .exp-logo img {
    width: 30vw;
    height: 30vw;
  }

  .exp-details h2 {
    font-size: 6vw;
  }

  .exp-details p {
    font-size: 3vw;
  }

  .exp-timeline {
    font-size: 3vw;
  }
}
 /* ── BENTO GRID ── */
        .bento-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            grid-template-rows: 300px 280px;
            gap: 14px;
        }

        /* card positions */
        .bento-large  { grid-column: 1; grid-row: 1 / 3; }
        .bento-tall   { grid-column: 2; grid-row: 1; }
        .bento-wide   { grid-column: 3; grid-row: 1; }
        .bento-square { grid-column: 2 / 4; grid-row: 2; }

/* ── BASE CARD ── */
.bento-card {
position: relative;
border-radius: 20px;
overflow: hidden;
text-decoration: none;
display: flex;
flex-direction: column;
border: 1px solid rgba(255,255,255,0.06);
background: #0e0e0e;
cursor: pointer;
/* 3D tilt needs perspective on the parent */
transform-style: preserve-3d;
transition: border-color 0.4s ease;
will-change: transform;
}

.bento-card:hover {
border-color: rgba(255,255,255,0.15);
}

/* subtle inner glow on hover */
.bento-bg {
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.04) 0%, transparent 65%);
opacity: 0;
transition: opacity 0.5s ease;
pointer-events: none;
}

.bento-card:hover .bento-bg {
opacity: 1;
}

/* ── CARD INNER ── */
.bento-inner {
position: relative;
z-index: 1;
padding: 2rem;
height: 100%;
display: flex;
flex-direction: column;
background: transparent;
}

.bento-tag {
font-size: 0.7rem;
color: rgba(255,255,255,0.25);
letter-spacing: 0.18em;
text-transform: uppercase;
margin-bottom: auto;
background: transparent;
}

.bento-title {
color: #fff;
font-size: clamp(1.6rem, 2.8vw, 3.2rem);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.025em;
margin-bottom: 0.5rem;
background: transparent;
transition: letter-spacing 0.35s ease;
}

.bento-card:hover .bento-title {
letter-spacing: -0.01em;
}

.bento-desc {
color: rgba(255,255,255,0.3);
font-size: 0.82rem;
letter-spacing: 0.02em;
background: transparent;
}

/* ── ARROW BUTTON ── */
.bento-arrow {
position: absolute;
top: 1.6rem;
right: 1.6rem;
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid rgba(255,255,255,0.1);
display: flex;
align-items: center;
justify-content: center;
color: rgba(255,255,255,0.5);
font-size: 1rem;
transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
background: transparent;
}

.bento-arrow i {
background: transparent;
color: inherit;
}

.bento-card:hover .bento-arrow {
background: #fff;
border-color: #fff;
color: #000;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
.bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 240px;
}
.bento-large  { grid-column: 1 / 3; grid-row: 1; }
.bento-tall   { grid-column: 1;     grid-row: 2; }
.bento-wide   { grid-column: 2;     grid-row: 2; }
.bento-square { grid-column: 1 / 3; grid-row: 3; }
}

@media (max-width: 520px) {
.bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}
.bento-large,
.bento-tall,
.bento-wide,
.bento-square { grid-column: 1; grid-row: auto; }

.bento-card { min-height: 200px; }
}
/* ── FULLSCREEN MENU ── */
#fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    visibility: hidden;
}

#fullscreen-menu.is-open {
    pointer-events: all;
    visibility: visible;
}

#menu-overlay {
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    will-change: transform;
}

#menu-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6vw 8vw;
    opacity: 0;
}

#menu-close {
    position: absolute;
    top: 28px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
    z-index: 10;
    transition: transform 0.3s ease;
}

#menu-close:hover {
    transform: rotate(90deg);
}

#menu-close i {
    background: transparent;
    color: #fff;
}

#menu-nav {
    display: flex;
    flex-direction: column;
}

.menu-item-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item-wrap:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    padding: 1rem 0;
    transform: translateY(110%);
    transition: color 0.3s ease;
    line-height: 1;
    background: transparent;
}

.menu-link:hover {
    color: rgba(255, 255, 255, 0.35);
}

.menu-link::before {
    content: attr(data-index);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
    letter-spacing: 0.1em;
    background: transparent;
    min-width: 2.5rem;
}

#menu-footer {
    position: absolute;
    bottom: 40px;
    left: 8vw;
    right: 8vw;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    background: transparent;
}

#menu-footer span {
    background: transparent;
}

/* smooth image layer */
.bento-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0.35;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

/* zoom effect on hover */
.bento-card:hover .bento-bg{
  transform: scale(1.1);
  opacity:0.5;
}

/* individual images */

.bento-card:nth-child(1) .bento-bg{
  background-image:url("img9.jpg");
}

.bento-card:nth-child(2) .bento-bg{
  background-image:url("img1.jpg");
}

.bento-card:nth-child(3) .bento-bg{
  background-image:url("img16.jpeg");
}

.bento-card:nth-child(4) .bento-bg{
  background-image:url("ayasc.png");
}