/* Modern Reset & Base */
:root {
    --primary-color: #00f2ff; /* Neon Cyan */
    --secondary-color: #eb00ff; /* Neon Magenta */
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Cursor set to 32x32 via image resize, but setting size here for support */
    cursor: url('assets/images/cursor_normal.png') 16 16, auto;
}

a, button, input, textarea, .store-button {
    cursor: url('assets/images/cursor_hover.png') 16 16, pointer;
}

/* Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(235, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 255, 0.15) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.hero-title {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(235, 0, 255, 0.3));
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 0 50px rgba(0, 242, 255, 0.2));
    animation: float 6s ease-in-out infinite;
    border-radius: 40px;
}

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

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Features grid */
.features-section {
    padding: 5rem 0;
    position: relative;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-description {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Buttons */
.store-buttons {
    display: flex;
    gap: 1.5rem;
}

.store-button img {
    height: 50px;
    transition: transform 0.2s ease;
}

.store-button:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 1rem;
    border-radius: 12px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-primary {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(235, 0, 255, 0.4);
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-icon {
    width: 28px;
    margin-right: 15px;
    border-radius: 6px; /* Hides white corners of square icons */
    transition: transform 0.3s ease;
}

.contact-item a:hover .contact-icon {
    transform: scale(1.1);
}

/* Specific fix for Instagram if it has a white background */
.contact-item a[href*="instagram"] .contact-icon {
    /* If the icon has a white background, this helps blend it or rounded corners hide it */
    border-radius: 8px; 
}

/* Paw Print Decorations */
.paw-print {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.05;
    pointer-events: none;
    transform: rotate(20deg);
}

.paw-1 { top: 10%; right: 10%; }
.paw-2 { bottom: 20%; left: 5%; transform: rotate(-15deg); }
.paw-3 { top: 40%; left: 50%; opacity: 0.03; }

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    .hero-description {
        text-align: center;
        margin: 0 auto 2rem;
    }
    .store-buttons {
        justify-content: center;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    .order-1 { order: 1; margin-bottom: 2rem; }
    .order-2 { order: 2; }
    
    .logo-container {
        margin-bottom: 2rem;
    }
}
