/* Color Configuration */
:root {
    /* Primary Colors */
    --color-primary: #333;
    --color-primary-light: #555;
    --color-primary-lighter: #666;
    --color-primary-lightest: #777;
    
    /* Background Colors */
    --color-bg-primary: #fefefe;
    --color-bg-secondary: #f5f5f5;
    --color-bg-tertiary: #e8e8e8;
    --color-bg-overlay: rgba(254, 254, 254, 0.9);
    --color-bg-card: rgba(254, 254, 254, 0.8);
    
    /* Border Colors */
    --color-border-primary: #666;
    --color-border-secondary: #f5f5f5;
    
    /* Shadow Colors */
    --color-shadow-primary: rgba(51, 51, 51, 0.08);
    --color-shadow-secondary: rgba(51, 51, 51, 0.06);
    --color-shadow-hover: rgba(51, 51, 51, 0.1);
    --color-shadow-button: rgba(85, 85, 85, 0.2);
    
    /* Button Colors */
    --color-button-bg: rgba(85, 85, 85, 0.1);
    --color-button-hover: rgba(102, 102, 102, 0.1);
    
    /* Text Colors */
    --color-text-primary: #333;
    --color-text-secondary: #555;
    --color-text-muted: #666;
    
    /* SVG Colors */
    --color-svg-shadow: rgba(0, 0, 0, 0.1);
    --color-svg-shadow-hover: rgba(0, 0, 0, 0.15);
    
    /* Custom Cursor Colors */
    --cursor-star-color: #FFD700;
    --cursor-star-glow: #FFA500;
    --cursor-star-shadow: rgba(255, 215, 0, 0.6);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    position: relative;
    cursor: none; /* Hide the default cursor */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 400;
    border: none;
    background: transparent;
    color: var(--color-text-secondary);
    cursor: none;
    position: relative;
}



.btn-primary {
    background: transparent;
    color: var(--color-text-secondary);
    border-color: transparent;
}

.btn-primary:hover {
    color: var(--color-text-primary);
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text-primary);
    transition: width 0.3s ease;
}

.btn:hover::after {
    width: 100%;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: -1;
    opacity: 0.4;
}

.hero-icon {
    margin-bottom: 2rem;
    animation: gentleFadeIn 1s ease forwards;
}

.hero-svg {
    width: 600px;
    height: 100%;
    filter: drop-shadow(0 4px 8px var(--color-svg-shadow));
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: none;
}

.hero-svg:hover {
    filter: drop-shadow(0 6px 12px var(--color-svg-shadow-hover));
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-top: 100px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: gentleFadeIn 1s ease 0.5s forwards;
    color: var(--color-text-secondary);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: gentleFadeIn 1s ease 1s forwards;
    opacity: 0;
}

/* Animations */
@keyframes gentleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-svg {
        width: 400px;
        height: 400px;
    }
    
    .hero-subtitle {
        margin-top: 60px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-svg {
        width: 280px;
        height: 280px;
    }
    
    .hero-subtitle {
        margin-top: 40px;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-svg {
        width: 240px;
        height: 240px;
    }
    
    .hero-subtitle {
        margin-top: 30px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 8px;
    }
}

/* Custom Cursor Effect */
.custom-cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: normal;
}

.cursor-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.cursor-star::before {
    content: '';
    background-image: url('cursor.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 70%;
    height: 70%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: var(--cursor-star-color);
    text-shadow: 
        2px 2px 0px #000,
        -2px -2px 0px #000,
        2px -2px 0px #000,
        -2px 2px 0px #000;

}

/* Hide custom cursor on mobile devices */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
    
    body {
        cursor: auto; /* Restore default cursor on mobile */
    }
}

/* Hover effects for interactive elements */
.btn:hover ~ .custom-cursor .cursor-star::before {
    transform: translate(-50%, -50%) scale(1.2);
    color: #FFA500;
}

.hero-svg:hover ~ .custom-cursor .cursor-star::before {
    transform: translate(-50%, -50%) scale(1.3);
    color: #FF8C00;
}
