/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography */
.hero-title, .gallery-title, .capture-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-out;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: contrast(1.1);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #333;
    font-weight: 300;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #000;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    position: absolute;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.bg-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 400px;
    background-image: url('assets/images/temp.jpg');
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
}

.bg-2 {
    top: 20%;
    right: 10%;
    width: 250px;
    height: 350px;
    background-image: url('assets/images/basquiat-art.jpg');
    transform: rotate(8deg);
    animation: float 8s ease-in-out infinite reverse;
}

.bg-3 {
    bottom: 15%;
    left: 15%;
    width: 200px;
    height: 300px;
    background-image: url('assets/images/caterpillar-nature.jpg');
    transform: rotate(-3deg);
    animation: float 7s ease-in-out infinite;
}

/* Gallery Section */
.gallery {
    padding: 8rem 2rem;
    background: #fafafa;
    position: relative;
}

.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    color: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Asymmetric positioning for gallery items */
.gallery-item:nth-child(2n) {
    transform: translateY(2rem);
}

.gallery-item:nth-child(3n) {
    transform: translateY(-1rem);
}

/* Lead Capture Section */
.lead-capture {
    position: relative;
    padding: 8rem 2rem;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.capture-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.capture-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.capture-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    font-weight: 300;
}

.capture-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #333;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.submit-btn {
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 2rem;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.capture-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

/* Footer */
.footer {
    background: #fff;
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 100px;
    height: auto;
    opacity: 0.8;
}

.footer-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .gallery {
        padding: 4rem 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item:nth-child(2n),
    .gallery-item:nth-child(3n) {
        transform: none;
    }
    
    .lead-capture {
        padding: 4rem 1rem;
    }
    
    .bg-1, .bg-2, .bg-3 {
        width: 200px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .capture-title {
        font-size: 1.8rem;
    }
}

