/* Kylie Memecoin Style Guide */

:root {
    --primary-orange: #FF6B35;
    --secondary-brown: #8B4513;
    --campus-green: #4CAF50;
    --academic-blue: #2196F3;
    --vibrant-yellow: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-secondary: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hard: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #FEFEFE;
}

.hero-logo {
    position: absolute;
    top: -5.5rem;
    left: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #FEFEFE;
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #FEFEFE;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FEFEFE;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #140d07 0%, #2a1f15 50%, #140d07 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 3rem;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FEFEFE;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #FEFEFE;
    margin-bottom: 2rem;
}

.hero-image {
    text-align: right;
    position: relative;
    align-self: flex-end;
    margin-bottom: -20px;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    transform: translateX(-20%);
    object-fit: cover;
    object-position: top;
}

.hero-social-top {
    position: absolute;
    top: -5.5rem;
    right: 0;
    display: flex;
    gap: 1.5rem;
    z-index: 1000;
}

.hero-social-top .social-link {
    color: var(--white);
    font-size: 1.8rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-social .social-link {
    color: var(--white);
    font-size: 1.8rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

/* Live Stats */
.live-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
}

/* Sections */
.section {
    padding: 5rem 0;
}

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

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #140d07;
}

/* Story Section */
.story {
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
}

/* Roadmap Section */
.roadmap {
    background: var(--white);
}

/* How to Buy Section */
.how-to-buy {
    background: linear-gradient(135deg, #140d07 0%, #2a1f15 50%, #140d07 100%);
    color: var(--white);
    padding: 5rem 0 5rem;
}

.how-to-buy .section-title {
    color: var(--white);
}

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

.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.step:hover::before {
    left: 100%;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #140d07;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 55%;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hard);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #140d07;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-kylie {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1.98);
    width: 50px;
    height: 50px;
}

.timeline-kylie img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) scale(1.98);
    }
    50% {
        transform: translateY(-50%) scale(1.98) translateY(-4px);
    }
}

.timeline-item:nth-child(odd) .timeline-kylie {
    right: -250px;
}

.timeline-item:nth-child(even) .timeline-kylie {
    left: -250px;
    top: 60%;
}

.timeline-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FEFEFE;
    padding: 0.75rem 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

.social-link {
    color: #FEFEFE;
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    display: inline-block;
}

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

.social-link i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-social-top {
        top: -5rem;
        right: 0;
    }

    .hero-logo {
        top: -5rem;
        left: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
    }

    .timeline-content::before {
        left: -35px !important;
    }

    .timeline-kylie {
        width: 35px;
        height: 35px;
    }

    .timeline-item:nth-child(odd) .timeline-kylie,
    .timeline-item:nth-child(even) .timeline-kylie {
        right: -50px;
        left: auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-social-top {
        top: -4.5rem;
        right: 0;
        gap: 1rem;
    }

    .hero-social-top .social-link {
        font-size: 1.5rem;
    }

    .hero-logo {
        font-size: 1.5rem;
        top: -4.5rem;
        left: 0;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Pulse Animation for Buy Button */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
} 