/* Variables */
:root {
    --bg-color: #e8c974;
    --text-dark: #1a1a1a;
    --text-light: #2a2a2a;
    --heading-font: "Montserrat", sans-serif;
    --body-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --card-bg: rgba(255, 255, 255, 0.4);
    --card-border: rgba(0, 0, 0, 0.1);
}

/* Base Reset & Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Noise Texture Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Hero Section - Full Screen */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
}

.hero-name {
    font-size: clamp(5rem, 20vw, 18rem);
    font-family: var(--heading-font);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0;
    color: var(--text-dark);
    text-transform: uppercase;
}

.name-line {
    display: block;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -15vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}

.scroll-indicator span {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: var(--text-dark);
    position: relative;
    animation: scrollDown 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--text-dark);
    border-bottom: 1px solid var(--text-dark);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Category Sections */
.category-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem;
    z-index: 1;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Works Grid */
.works-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Work Cards */
.work-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Work Card Image */
.work-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.05);
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-card-inner {
    padding: 2rem 2rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-number {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.work-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.work-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.work-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1.5rem;
}

.tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    position: relative;
    min-height: 60vh;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.about-content {
    max-width: 800px;
    text-align: center;
}

.about-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--text-dark);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--text-dark);
    color: var(--bg-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-name {
        font-size: clamp(4rem, 15vw, 8rem);
    }

    .category-section {
        padding: 5rem 1.5rem;
    }

    .works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-image {
        height: 200px;
    }

    .work-card-inner {
        padding: 1.5rem;
    }

    .section-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .about-section {
        padding: 5rem 1.5rem;
    }

    .about-text {
        font-size: 1.25rem;
    }

    .scroll-indicator {
        bottom: -10vh;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1rem;
    }

    .hero-name {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .category-section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .work-image {
        height: 180px;
    }

    .work-title {
        font-size: 1.25rem;
    }

    .work-description {
        font-size: 0.9rem;
    }

    .about-text {
        font-size: 1.125rem;
    }

    .contact-link {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}