/* Emily Website Styles - Blue Daisy Theme */

/* Color Palette:
   - Deep Blue Background: #0a1e3e
   - Cream Text: #f5f5dc
   - Primary Blue (Dress): #4a90e2
   - Daisy White: #ffffff
   - Daisy Centers: #fdb44b (yellow/orange)
   - Leaves: #7cb342 (green)
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a1e3e;
    color: #f5f5dc;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
}

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

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

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 30, 62, 0.5),
        rgba(10, 30, 62, 0.85)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.token-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(74, 144, 226, 0.2);
    border: 2px solid #4a90e2;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: lowercase;
    margin-bottom: 2rem;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.main-title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow:
        0 0 20px rgba(74, 144, 226, 0.8),
        0 0 40px rgba(74, 144, 226, 0.6),
        0 0 60px rgba(74, 144, 226, 0.4);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(74, 144, 226, 0.8),
            0 0 40px rgba(74, 144, 226, 0.6),
            0 0 60px rgba(74, 144, 226, 0.4);
    }
    50% {
        text-shadow:
            0 0 30px rgba(74, 144, 226, 1),
            0 0 60px rgba(74, 144, 226, 0.8),
            0 0 90px rgba(74, 144, 226, 0.6);
    }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    color: #f5f5dc;
    text-transform: lowercase;
}

.character-banner {
    position: relative;
    z-index: 2;
    margin-top: auto;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.character-banner img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(74, 144, 226, 0.5));
}

/* Main Content Section */
.main-content {
    position: relative;
    z-index: 3;
    background-color: #0a1e3e;
    padding: 4rem 2rem;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
}

.tagline {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fdb44b;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.description {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
    color: #f5f5dc;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.image-box {
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: drop-shadow(0 5px 15px rgba(74, 144, 226, 0.3));
}

.image-box.featured {
    width: 350px;
    height: 350px;
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.2);
}

.image-box:hover {
    transform: translateY(-10px);
    border-color: #4a90e2;
    box-shadow:
        0 10px 40px rgba(74, 144, 226, 0.4),
        0 0 30px rgba(74, 144, 226, 0.3);
}

.image-box:hover img {
    filter: drop-shadow(0 10px 25px rgba(74, 144, 226, 0.6));
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.social-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(74, 144, 226, 0.2);
    border: 2px solid #4a90e2;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05rem;
}

.social-button:hover {
    background: rgba(74, 144, 226, 0.4);
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow:
        0 10px 30px rgba(74, 144, 226, 0.5),
        0 0 40px rgba(74, 144, 226, 0.3);
}

/* Contract Section */
.contract-section {
    text-align: center;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contract-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fdb44b;
    letter-spacing: 0.1rem;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    word-break: break-all;
    padding: 1rem;
    background: rgba(10, 30, 62, 0.5);
    border-radius: 8px;
    color: #f5f5dc;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
        letter-spacing: 0.3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

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

    .tagline {
        font-size: 1.25rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .image-box {
        width: 250px;
        height: 250px;
    }

    .image-box.featured {
        width: 280px;
        height: 280px;
    }

    .social-links {
        gap: 1rem;
    }

    .social-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero {
        height: 100vh;
    }

    .main-title {
        font-size: 3rem;
        letter-spacing: 0.2rem;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 0.2rem;
    }

    .token-badge {
        font-size: 0.875rem;
        padding: 0.4rem 1.2rem;
    }

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

    .tagline {
        font-size: 1.125rem;
    }

    .description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .image-gallery {
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-box,
    .image-box.featured {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .social-button {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 1.5rem;
    }

    .contract-section {
        padding: 1.5rem 1rem;
    }

    .contract-title {
        font-size: 1.25rem;
    }

    .contract-address {
        font-size: 0.875rem;
    }

    .character-banner {
        padding: 1rem;
    }

    .main-content {
        padding: 3rem 1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .main-title {
        font-size: 2.5rem;
    }

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