/* Custom Balanced Design Overrides */

/* 1. Typography Refinement */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8 !important;
    /* Increased from 1.7 for better readability */
    color: #1a1a1a !important;
    /* Slightly softer black */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.03em;
    /* Tighter tracking for headings */
    color: #000000;
}

/* 2. Hero Section Refinement */
.nike-hero-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 800;
    /* Slightly less than 900 */
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    /* Softer shadow */
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.nike-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    /* Gradient overlay */
    z-index: 1;
}

/* 3. Section Spacing & Whitespace */
section,
#gallery07-9 {
    padding-top: clamp(6rem, 10vw, 10rem);
    padding-bottom: clamp(6rem, 10vw, 10rem);
}

.nike-hero-section {
    padding: 0;
    /* Reset for hero */
}

/* 4. Gallery Refinement */
.grid-item img {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.grid-item:hover img {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* 5. Social Section Refinement */
.social-section {
    padding: 6rem 2rem;
    text-align: center;
    background: #f9f9f9;
    /* Light grey background for contrast */
    border-top: 1px solid #eaeaea;
    position: relative;
    z-index: 1;
}

.social-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align */
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.social-links-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.social-link {
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    position: relative;
    padding: 0.75rem 0.5rem;
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-link::after {
    display: none;
    /* Remove underline animation for a cleaner look */
}

.social-email {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    margin-top: 1rem;
    display: inline-block;
    padding: 0.75rem 0.5rem;
    opacity: 0.5;
}

.social-email:hover {
    color: #000;
    opacity: 1;
    transform: translateY(-1px);
}

.social-email::after {
    display: none;
}

.social-divider {
    display: none;
    /* Hide divider */
}

/* 6. Navigation Refinement */
.nav-logo {
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* 7. Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}