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

:root {
    --color-primary: #FF6B6B;
    --color-primary-dark: #FF5252;
    --color-secondary: #FFB74D;
    --color-accent: #4ECDC4;
    --color-orange-pink: #FF8A80;
    --color-pink: #F06292;
    --color-green: #81C784;
    --color-dark: #2C3E50;
    --color-text: #333333;
    --color-light-bg: #FAFAFA;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* Header Section */
.header {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/forest-background.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    opacity: 0.4;
    z-index: 0;
}

.header-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(255, 218, 185, 0.3) 100%);
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-pink);
    background: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.tagline-1 {
    font-weight: 600;
}

.tagline-2 {
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--color-orange-pink) 0%, var(--color-pink) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 138, 128, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 138, 128, 0.6);
}

.sub-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-dark);
    opacity: 0.8;
}

/* App Screenshots */
.app-screenshots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.phone-screen {
    width: 280px;
    perspective: 1000px;
}

.phone-frame {
    background: #000;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.phone-screen:nth-child(2) .phone-frame {
    transform: rotateY(0deg) rotateX(0deg) scale(1.1);
}

.phone-screen:nth-child(3) .phone-frame {
    transform: rotateY(5deg) rotateX(5deg);
}

.phone-screen:hover .phone-frame {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.phone-content {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
}

.screenshot-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--color-orange-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.map-pin.large-pin {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.map-pin .pin-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.map-pin.small-pin {
    width: 30px;
    height: 30px;
}

.map-pin.pin-1 {
    top: 20%;
    left: 20%;
}

.map-pin.pin-2 {
    top: 60%;
    right: 15%;
}

.map-pin.pin-3 {
    bottom: 15%;
    left: 25%;
}

.screenshot-feed {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    padding: 1rem;
    overflow-y: auto;
}

.feed-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feed-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.feed-location,
.feed-description {
    padding: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text);
}

.pluck-button {
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--color-orange-pink) 0%, var(--color-pink) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Social Media Icons Vertical */
.social-icons-vertical {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 100;
}

.social-icon {
    width: 32px;
    height: 32px;
    color: var(--color-dark);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--color-orange-pink);
    transform: scale(1.1);
}

.tiktok-text {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    color: var(--color-dark);
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--color-light-bg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-text);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
}

.feature-block {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    color: var(--color-orange-pink);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.magnifying-glass {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    color: var(--color-accent);
}

.building-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 50px;
    height: 50px;
    color: var(--color-green);
}

.feature-image-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

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

.museum-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-dark);
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    max-width: 350px;
    margin: 0 auto;
}

.feature-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.connector-dots {
    width: 2px;
    height: 60px;
    background: repeating-linear-gradient(
        to bottom,
        var(--color-orange-pink) 0,
        var(--color-orange-pink) 8px,
        transparent 8px,
        transparent 16px
    );
}

.paw-print {
    font-size: 1.2rem;
    filter: opacity(0.6);
}

/* Mascot Section */
.mascot-section {
    position: relative;
    padding: 6rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mascot-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hiking-background.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    opacity: 0.3;
    z-index: 0;
}

.mascot-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mascot-text {
    padding: 2rem;
}

.mascot-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pluck-word {
    display: inline-block;
    font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
    font-size: 1.2em;
    color: var(--color-orange-pink);
    position: relative;
}

.paw-trail {
    font-size: 0.6em;
    margin-left: 0.5rem;
    opacity: 0.7;
}

.mascot-tagline {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--color-text);
    line-height: 1.8;
}

.mascot-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-connector {
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mascot-connector .connector-dots {
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--color-orange-pink) 0,
        var(--color-orange-pink) 8px,
        transparent 8px,
        transparent 16px
    );
}

.capybara {
    max-width: 400px;
    width: 100%;
}

.capybara-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
}

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

.footer-cta-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.footer-copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-link {
    color: white;
    text-decoration: underline;
}

.contact-button {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-icons-horizontal {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-icons-horizontal .social-icon {
    color: white;
    opacity: 0.8;
}

.social-icons-horizontal .social-icon:hover {
    opacity: 1;
    color: var(--color-orange-pink);
}

.social-icons-horizontal .tiktok-text {
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-connector {
        display: none;
    }
    
    .mascot-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mascot-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .app-screenshots {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .phone-screen {
        width: 220px;
    }
    
    .social-icons-vertical {
        position: static;
        flex-direction: row;
        justify-content: center;
        transform: none;
        margin-top: 2rem;
        right: auto;
    }
    
    .features-section {
        padding: 4rem 1.5rem;
    }
    
    .mascot-section {
        padding: 4rem 1.5rem;
    }
    
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .social-icons-horizontal {
        position: static;
        justify-content: center;
        margin-top: 2rem;
        right: auto;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
        padding: 0.4rem 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation for Images */
.feature-image,
.capybara-image,
.feed-image {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

