:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --font-primary: 'Outfit', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial;
    /* Lenis handles this */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Nav Styles */
.navbar {
    position: fixed;
    top: 2rem;
    left: 5%;
    width: 90%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    top: 1rem;
    width: 80%;
    left: 10%;
    padding: 1rem 2.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.glossy-text {
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.sub-text {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.7;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.cta-button.secondary {
    background: white;
    color: black;
}

.cta-button.secondary:hover {
    background: transparent;
    color: white;
}

.cta-button:not(.secondary):hover {
    background: white;
    color: black;
}

/* Main Content Wrapper Background */
.content-wrapper {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/Whisk_814670ddc290297886a4f5042f910a45dr%20(1).jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Services Section */
.services {
    padding: 10rem 10%;
    background: transparent;
}

.services h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 4rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Increased from 0.2 */
    transition: var(--transition-smooth);
    background: #0a0a0a;
    /* Defined solid color */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.service-card p {
    opacity: 0.8;
    color: #ffffff;
}

.service-icon {
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: white;
}

/* About Section */
.about {
    padding: 15rem 10%;
    background: transparent;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-visual {
    height: 500px;
    background: linear-gradient(145deg, #111, #000);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.abstract-shape {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    position: relative;
}

.abstract-shape::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Portfolio Section */
.portfolio {
    padding: 15rem 10%;
    background: transparent;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: 8rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-card {
    height: 600px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    transition: var(--transition-smooth);
}

.portfolio-card:hover::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, transparent 100%);
}

.portfolio-info {
    position: relative;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.portfolio-card p {
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Process Section */
.process {
    padding: 15rem 10%;
    background: transparent;
}

.process h2 {
    text-align: center;
    margin-bottom: 8rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.1;
    display: block;
    margin-bottom: -2rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.step p {
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}


/* Contact Section */
.contact {
    padding: 10rem 10%;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    margin: 3rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    color: white;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: white;
}

/* Footer */
footer {
    padding: 5rem 10%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        top: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 0 5%;
        text-align: center;
    }

    .glossy-text {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 1.5rem;
    }

    .sub-text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        opacity: 0.8;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-button {
        width: 100%;
        min-width: unset;
        padding: 1rem;
    }

    .about-container {
        gap: 3rem;
    }

    .portfolio-card {
        padding: 2rem;
        height: 400px;
    }

    .portfolio-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .glossy-text {
        font-size: 2.2rem;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 60px;
    }
}