/* Font Faces - Using web-safe fonts since custom fonts are missing */
/* @font-face {
    font-family: 'New Spirit Regular';
    src: url('fonts/New Spirit Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Sometype Mono Regular';
    src: url('fonts/SometypeMono-Regular.ttf') format('truetype');
} */

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #F8F9FA;
    color: #000000;
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FF6B6B;
    z-index: 1000;
    border-bottom: 3px solid #000000;
    box-shadow: 6px 6px 0px #000000;
}

.header h1 {
    margin: 0;
    font-size: 2rem;
    color: #000000;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #FFE600;
}

/* Title Section */
.title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    min-height: 80vh;
    background: #4ECDC4;
    margin-top: 80px;
    border: 3px solid #000000;
    box-shadow: 8px 8px 0px #000000;
}

.title {
    flex: 1;
    text-align: left;
    color: #000000;
}

.title h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.85;
    margin: 0 0 1.5rem 0;
    text-align: left;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #000000;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px #FFE600;
}

.title p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-align: left;
    padding: 0;
    margin: 0 0 2rem 0;
    line-height: 1.4;
    font-weight: 700;
    color: #000000;
    max-width: 400px;
    background: #FFE600;
    padding: 0.75rem 1.25rem;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
}

/* GIF Section */
.gif {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gif img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 0 0 6px white) drop-shadow(0 0 0 12px white) drop-shadow(8px 8px 0px #000000);
    border: 3px solid #000000;
    background: white;
}

/* Celebration Strip */
.celebration-strip {
    background: #FFE600;
    padding: 4rem 0;
    border: 3px solid #000000;
    margin: 3rem 0;
    box-shadow: 8px 8px 0px #000000;
    overflow: hidden;
    position: relative;
}

.celebration-strip h3 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #000000;
    margin-bottom: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #FF6B6B;
}

.celebration-scroll {
    display: flex;
    gap: 2rem;
    animation: celebrationScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
    padding-left: 100%;
}

.celebration-scroll:hover {
    animation-play-state: paused;
}

.celebration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #FF6B6B;
    padding: 1rem 1.5rem;
    border: 3px solid #000000;
    border-radius: 0;
    box-shadow: 6px 6px 0px #000000;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    min-width: 250px;
    flex-shrink: 0;
}

.celebration-item:nth-child(even) {
    background: #4ECDC4;
    transform: rotate(3deg);
}

.celebration-item:nth-child(3n) {
    background: #FF9FF3;
    transform: rotate(-1deg);
}

.celebration-item:nth-child(4n) {
    background: #FFE600;
    transform: rotate(2deg);
}

.celebration-item:nth-child(5n) {
    background: #FF6B6B;
    transform: rotate(-3deg);
}

.celebration-item:nth-child(6n) {
    background: #4ECDC4;
    transform: rotate(1deg);
}

.celebration-item:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 8px 8px 0px #000000;
}

.celebration-item .emoji {
    font-size: 2rem;
    filter: drop-shadow(2px 2px 0px #000000);
}

.celebration-item .text {
    font-size: 1rem;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px #FFFFFF;
}

@keyframes celebrationScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Second Section */
.second-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    gap: 3rem;
    background: #FF9FF3;
    border: 3px solid #000000;
    box-shadow: 8px 8px 0px #000000;
}

.image-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-left img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 0 0 6px white) drop-shadow(0 0 0 12px white) drop-shadow(8px 8px 0px #000000);
    border: 3px solid #000000;
    background: white;
}

.text-right {
    flex: 1;
    padding: 0 1.5rem;
}

.text-right h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 0 0 1.5rem 0;
    color: #000000;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #FFE600;
}

.text-right p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #000000;
    margin: 0 0 2rem 0;
    line-height: 1.4;
    font-weight: 700;
    background: #FFE600;
    padding: 0.75rem 1.25rem;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
}

/* Image Section */
.image-section {
    text-align: center;
    margin: 3rem 0;
    padding: 0 2rem;
}

.image-section img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 0 6px white) drop-shadow(0 0 0 12px white) drop-shadow(8px 8px 0px #000000);
    border-radius: 0;
    border: 3px solid #000000;
    background: white;
}

/* Scroll Section */
.scroll-section {
    text-align: center;
    margin-top: 3rem;
    color: #000000;
    background: #FF6B6B;
    padding: 3rem 0;
    overflow: hidden;
    border: 3px solid #000000;
    margin: 3rem 0 0 0;
    box-shadow: 8px 8px 0px #000000;
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
}

.scroll-text {
    white-space: nowrap;
    color: #000000;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-weight: 900;
    letter-spacing: -0.04em;
    animation: scroll 40s linear infinite alternate;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #FFE600;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.scroll-button {
    margin-top: 1.5rem;
}

/* Button Styles */
/* Buttons */
.order-button {
    display: inline-block;
    background: #000000;
    color: #FFE600;
    padding: 1rem 2rem;
    border: 3px solid #000000;
    border-radius: 0;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 6px 6px 0px #FF6B6B;
    text-shadow: 1px 1px 0px #000000;
    letter-spacing: 0.025em;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
}

.order-button:hover {
    background: #FF6B6B;
    color: white;
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #FF6B6B;
}

.order-button:active {
    transform: translate(0px, 0px);
    box-shadow: 4px 4px 0px #000000;
}

.order-button-black {
    background: #000000;
    color: #FFE600;
    padding: 1rem 2rem;
    border: 3px solid #000000;
    border-radius: 0;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 6px 6px 0px #FF6B6B;
    text-shadow: 1px 1px 0px #000000;
    letter-spacing: 0.025em;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
}

.order-button-black:hover {
    background: #FF6B6B;
    color: white;
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #FF6B6B;
}

.order-button-black:active {
    transform: translate(0px, 0px);
    box-shadow: 4px 4px 0px #FFE600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
        border-bottom: 3px solid #000000;
        box-shadow: 6px 6px 0px #000000;
    }

    .header h1 {
        font-size: 1.5rem;
        text-shadow: 2px 2px 0px #FFE600;
    }

    .title-section,
    .second-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
        border: 3px solid #000000;
        box-shadow: 8px 8px 0px #000000;
        margin-top: 70px;
    }

    .title h2 {
        font-size: clamp(2.5rem, 7vw, 4rem);
        text-shadow: 2px 2px 0px #FFE600;
    }

    .title p {
        font-size: clamp(1rem, 3vw, 1.25rem);
        border: 2px solid #000000;
        box-shadow: 4px 4px 0px #000000;
    }

    .gif img {
        max-width: 400px;
        border: 3px solid #000000;
        filter: drop-shadow(0 0 0 6px white) drop-shadow(0 0 0 12px white) drop-shadow(8px 8px 0px #000000);
    }

    .image-left {
        order: 2;
    }

    .image-left img {
        border: 3px solid #000000;
        filter: drop-shadow(0 0 0 6px white) drop-shadow(0 0 0 12px white) drop-shadow(8px 8px 0px #000000);
    }

    .text-right {
        order: 1;
        text-align: center;
        padding: 0;
    }

    .text-right h2 {
        text-align: center;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 0px #FFE600;
    }

    .text-right p {
        text-align: center;
        margin-bottom: 2rem;
        border: 2px solid #000000;
        box-shadow: 4px 4px 0px #000000;
    }

    .scroll-text {
        font-size: clamp(2rem, 6vw, 3rem);
        text-shadow: 2px 2px 0px #FFE600;
    }

    .scroll-section {
        padding: 2rem 0;
        margin: 2rem 0 0 0;
        border: 3px solid #000000;
        box-shadow: 8px 8px 0px #000000;
    }

    .order-button,
    .order-button-black {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        border: 3px solid #000000;
        box-shadow: 6px 6px 0px #000000;
    }

    .image-section {
        padding: 0 1.5rem;
    }

    .image-section img {
        border: 3px solid #000000;
        filter: drop-shadow(0 0 0 6px white) drop-shadow(0 0 0 12px white) drop-shadow(8px 8px 0px #000000);
    }

    .celebration-strip {
        padding: 3rem 0;
        border: 3px solid #000000;
        box-shadow: 8px 8px 0px #000000;
    }

    .celebration-strip h3 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 2rem;
        text-shadow: 2px 2px 0px #FF6B6B;
    }

    .celebration-item {
        padding: 0.75rem 1.25rem;
        min-width: 220px;
        gap: 0.5rem;
    }

    .celebration-item .emoji {
        font-size: 1.5rem;
    }

    .celebration-item .text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0.75rem;
        border-bottom: 2px solid #000000;
        box-shadow: 4px 4px 0px #000000;
    }

    .header h1 {
        font-size: 1.25rem;
    }

    .title-section,
    .second-section {
        padding: 2rem 1rem;
        border: 2px solid #000000;
        box-shadow: 6px 6px 0px #000000;
        margin-top: 60px;
    }

    .title h2 {
        font-size: clamp(2rem, 7vw, 3rem);
        text-shadow: 2px 2px 0px #FFE600;
    }

    .title p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        border: 2px solid #000000;
        box-shadow: 3px 3px 0px #000000;
    }

    .text-right h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        text-shadow: 2px 2px 0px #FFE600;
    }

    .text-right p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        border: 2px solid #000000;
        box-shadow: 3px 3px 0px #000000;
    }

    .celebration-strip {
        padding: 2rem 0;
        border: 2px solid #000000;
        box-shadow: 6px 6px 0px #000000;
    }

    .celebration-strip h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 0px #FF6B6B;
    }

    .celebration-item {
        padding: 0.5rem 1rem;
        min-width: 180px;
        gap: 0.5rem;
    }

    .celebration-item .emoji {
        font-size: 1.25rem;
    }

    .celebration-item .text {
        font-size: 0.8rem;
    }

    .scroll-text {
        font-size: clamp(1.5rem, 5vw, 2rem);
        text-shadow: 2px 2px 0px #FFE600;
    }

    .order-button,
    .order-button-black {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border: 2px solid #000000;
        box-shadow: 4px 4px 0px #000000;
    }

    .gif img,
    .image-left img,
    .image-section img {
        border: 2px solid #000000;
        filter: drop-shadow(0 0 0 4px white) drop-shadow(0 0 0 8px white) drop-shadow(6px 6px 0px #000000);
    }
}

/* Utility Classes */
.uploaded-image {
    max-width: 100px;
    max-height: 100px;
    margin: 10px;
}

.image-container {
    display: none;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
}

/* Hide the actual file input */
#file-upload {
    display: none;
}
