* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    overflow: hidden;
    background-color: #050505;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT STYLING */
.content-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    transition: filter 0.3s ease;
}

h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #acacac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn {
    background: linear-gradient(90deg, #b9910e, #cc8419);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 193, 58, 0.3);
}

.btn2 {
    margin-top: 5px;
    background: #ccc;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* BACKGROUND ELEMENTS */
.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.sphere-1 {
    width: 40vw;
    height: 40vw;
    background: linear-gradient(40deg, rgba(255, 255, 255, 0.5), rgba(104, 104, 104, 0.3));
    top: -10%;
    left: -10%;
    animation: float-1 15s ease-in-out infinite alternate;
}

.sphere-2 {
    width: 45vw;
    height: 45vw;
    background: linear-gradient(240deg, rgba(255, 255, 255, 0.5), rgba(58, 58, 58, 0.3));
    bottom: -20%;
    right: -10%;
    animation: float-2 18s ease-in-out infinite alternate;
}

.sphere-3 {
    width: 30vw;
    height: 30vw;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), rgba(252, 252, 252, 0.3));
    top: 60%;
    left: 20%;
    animation: float-3 20s ease-in-out infinite alternate;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    z-index: 2;
}

.glow {
    position: absolute;
    width: 40vw;
    height: 40vh;
    background: radial-gradient(circle, rgba(72, 0, 255, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: pulse 8s infinite alternate;
    filter: blur(30px);
}

/* ANIMATIONS */
@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.1); }
}

@keyframes float-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10%, -5%) scale(1.15); }
}

@keyframes float-3 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    100% { transform: translate(-5%, 10%) scale(1.05); opacity: 0.6; }
}

/* BLUR EFFECT & PORTFOLIO OVERLAY */
.content-container.blurred {
    filter: blur(6px);
}

.portfolio-wrapper {
    position: fixed;
    top: 5%;
    bottom: 5%;
    left: 10%;
    right: 10%;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    overflow-y: scroll;
    background: none;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.portfolio-wrapper::-webkit-scrollbar {
    display: none;
}

.portfolio-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.portfolio-wrapper.shown {
    opacity: 1;
    pointer-events: all;
}

.close-btn {
    position: fixed;
    padding: 10px 20px;
    right: 5%;
    border: solid 1px #fff;
    color: #fff;
    font-size: 1.2rem;
    background: #ffffff5c;
}

/* HEADINGS */
.padding-bottom-half {
    padding-bottom: 80px;
}

.padding-top {
    padding-top: 120px;
}

.heading-area {
    position: relative;
    transform: translate(63%,65%);
    z-index: 11;
}

.heading-area-oposite {
    position: relative;
    transform: translate(-63%,65%);
    z-index: 11;
}

.heading {
    font-size: 4vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-shadow: -1px 4px 10px black;
    color: #ffffff;
}
.highlight-text{
    background: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%);
}
.highlight-text-op{
    background: linear-gradient(90deg,rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 0%);
}
img {
    max-width: 100%;
    height: auto;
}

.textBox {
  margin-bottom: 10px;
}

.textBox.expanded {
    font-size: 18px; /* full version */
}

.toggleBtn {
  padding: 8px 16px;
  cursor: pointer;
}

@media (max-width: 910px){
    .heading-area-oposite, .heading-area{
        transform: translate(0%, 0%);
    }
}
@media (min-width: 910px){
    .heading {
        font-size: 4vw;
    }
}
@media (min-width: 1440px){
    .heading {
        font-size: 3vw;
    }
}
