/* ============================================
   CasseyPe Fashion Portfolio
   Modern CSS with krasse Effekte
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-light: #111111;
    --color-bg-card: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-accent: #c9a227;
    --color-accent-light: #e6c44a;
    --color-accent-dark: #9a7b1d;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vh, 150px);
    --container-max: 1400px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-medium: 0.4s var(--ease-smooth);
    --transition-slow: 0.8s var(--ease-smooth);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor {
    pointer-events: none;
    position: fixed;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease-smooth),
                width 0.3s var(--ease-bounce),
                height 0.3s var(--ease-bounce);
    z-index: 10002;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-smooth),
                width 0.3s var(--ease-bounce),
                height 0.3s var(--ease-bounce),
                border-color 0.3s;
    z-index: 10001;
}

body.cursor-hover .cursor-dot {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.2);
}

body.cursor-hover .cursor-outline {
    width: 80px;
    height: 80px;
    border-color: var(--color-accent-light);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .cursor { display: none; }
    body, a, button { cursor: auto; }
}

/* ============================================
   Scroll Progress Bar
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    filter: invert(1);
    transition: var(--transition-fast);
}

.nav-logo:hover img {
    transform: scale(1.05);
    filter: invert(1) drop-shadow(0 0 10px var(--color-accent));
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-social {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.nav-social:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.nav-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-bg-layer.layer-1 {
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 50%);
}

.hero-bg-layer.layer-2 {
    background: radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 40%);
}

.hero-bg-layer.layer-3 {
    background: radial-gradient(ellipse at 60% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 45%);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    animation: float-1 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation: float-2 15s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 20%;
    animation: float-3 12s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(50px, 20px) rotate(-5deg); }
    75% { transform: translate(-20px, 40px) rotate(3deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, 20px) scale(1.1); }
    66% { transform: translate(-20px, -30px) scale(0.95); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(30px, -40px); opacity: 1; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left: clamp(20px, 10vw, 150px);
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-logo {
    height: 60px;
    width: auto;
    filter: invert(1);
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.title-line.highlight {
    color: var(--color-accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: var(--transition-medium);
    z-index: -1;
}

.hero-cta:hover {
    color: var(--color-bg);
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-arrow {
    transition: var(--transition-fast);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: clamp(20px, 10vw, 150px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 100%;
    height: 30px;
    background: var(--color-accent);
    position: absolute;
    top: -30px;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% { top: -30px; }
    50% { top: 80px; }
    100% { top: -30px; }
}

/* Hero Image */
.hero-image-wrapper {
    position: absolute;
    right: clamp(20px, 5vw, 100px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: clamp(300px, 35vw, 500px);
}

.hero-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    transform-style: preserve-3d;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================
   Marquee Section
   ============================================ */
.marquee-section {
    padding: 2rem 0;
    background: var(--color-accent);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-bg);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-content .separator {
    font-size: clamp(1rem, 2vw, 1.5rem);
    opacity: 0.5;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-accent);
}

.section-header.center .section-label {
    padding-left: 0;
}

.section-header.center .section-label::before {
    display: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 500px;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   The Looks - Gallery Section
   ============================================ */
.looks-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

/* Filter Tabs */
.looks-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-bg);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* Bento Grid */
.looks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 1.5rem;
}

.look-item {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: var(--transition-medium);
}

.look-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.look-item.wide {
    grid-column: span 2;
}

.look-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.look-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.look-item:hover .look-image img {
    transform: scale(1.1);
}

.look-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(60%);
    transition: var(--transition-medium);
}

.look-item:hover .look-overlay {
    transform: translateY(0);
}

.look-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.look-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.look-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.look-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.look-item:hover .look-number {
    color: var(--color-accent);
}

/* ============================================
   Horizontal Scroll Section
   ============================================ */
.horizontal-section {
    position: relative;
    background: var(--color-bg-light);
}

.horizontal-wrapper {
    overflow: hidden;
}

.horizontal-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: var(--section-padding) 0;
}

.horizontal-intro {
    min-width: 400px;
    padding-left: clamp(20px, 10vw, 150px);
}

.horizontal-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.horizontal-intro p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.horizontal-items {
    display: flex;
    gap: 3rem;
}

.h-item {
    min-width: 350px;
    position: relative;
}

.h-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.h-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.h-item:hover .h-image img {
    transform: scale(1.05);
}

.h-info {
    padding: 0 1rem;
}

.h-season {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.h-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.horizontal-end {
    min-width: 300px;
    padding-right: clamp(20px, 10vw, 150px);
}

.insta-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-accent);
    transition: var(--transition-fast);
}

.insta-link:hover {
    gap: 1.5rem;
}

.insta-link svg {
    transition: var(--transition-fast);
}

.insta-link:hover svg {
    transform: translate(5px, -5px);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    transform-style: preserve-3d;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    color: var(--color-bg);
}

.about-floating-card span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content {
    max-width: 550px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--color-text);
    font-weight: 400;
}

.about-text strong {
    color: var(--color-accent);
    font-weight: 500;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-accent);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

/* About CTA */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-medium);
}

.about-cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

/* ============================================
   Details Section
   ============================================ */
.details-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

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

.detail-card {
    background: var(--color-bg-card);
    overflow: hidden;
    transition: var(--transition-medium);
    transform-style: preserve-3d;
}

.detail-card:hover {
    transform: translateY(-10px);
}

.detail-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.detail-card:hover .detail-image img {
    transform: scale(1.1);
}

.detail-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    transition: var(--transition-medium);
    opacity: 0;
}

.detail-card:hover .detail-zoom {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.detail-content {
    padding: 1.5rem;
}

.detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.detail-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ============================================
   Quote Section
   ============================================ */
.quote-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    opacity: 0.1;
}

.big-quote {
    text-align: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 15rem;
    color: var(--color-accent);
    opacity: 0.2;
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.quote-author {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-content {
    max-width: 500px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.contact-link:hover {
    background: var(--color-bg-light);
    border-color: var(--color-accent);
    transform: translateX(10px);
}

.link-icon {
    color: var(--color-accent);
}

.link-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
}

.link-arrow {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.contact-link:hover .link-arrow {
    color: var(--color-accent);
    transform: translate(5px, -5px);
}

.contact-visual {
    position: relative;
}

.contact-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    max-width: 450px;
    margin-left: auto;
    transform-style: preserve-3d;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--color-bg-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 35px;
    width: auto;
    filter: invert(1);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-social a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-tagline {
    font-style: italic;
    color: var(--color-accent) !important;
}

/* ============================================
   Animations
   ============================================ */
/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition-slow);
}

/* Split Text Animation (used with GSAP) */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .looks-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px;
    }

    .look-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-image-wrapper {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 clamp(20px, 5vw, 60px);
    }

    .hero-scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-visual {
        order: -1;
    }

    .contact-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .horizontal-intro {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    .looks-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 450px;
    }

    .look-item.large,
    .look-item.wide {
        grid-column: span 1;
    }

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

    .about-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        flex: 1 1 100px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .horizontal-section {
        display: none;
    }

    .quote-mark {
        font-size: 8rem;
        top: -2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .looks-grid {
        grid-auto-rows: 400px;
    }

    .about-floating-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
    }

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

    .link-text {
        font-size: 0.95rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.hidden {
    opacity: 0;
    visibility: hidden;
}

.no-scroll {
    overflow: hidden;
}

/* Print Styles */
@media print {
    .cursor,
    .scroll-progress,
    .navbar {
        display: none;
    }
}
