/* 90s Web Aesthetic for Vinnieragua */
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Courier+Prime:wght@400;700&display=swap');

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

body {
    background-color: #000000;
    color: #FFFF00;
    font-family: 'Comic Neue', cursive;
    font-size: 16px;
    line-height: 1.4;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><text y="15" font-size="15">✨</text></svg>'), auto;
}

/* Starry Background */
.starry-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.3;
    z-index: -1;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* WordArt Logo */
.wordart-logo {
    font-family: 'Courier Prime', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #FF8C00;
    text-align: center;
    text-shadow: 
        3px 3px 0px #FF4500,
        6px 6px 0px #FF6347,
        9px 9px 0px #FF0000,
        12px 12px 10px rgba(255, 69, 0, 0.5);
    transform: perspective(500px) rotateX(15deg);
    letter-spacing: 0.1em;
    margin: 20px 0;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 3px 3px 0px #FF4500, 6px 6px 0px #FF6347, 9px 9px 0px #FF0000, 12px 12px 10px rgba(255, 69, 0, 0.5); }
    to { text-shadow: 3px 3px 0px #FF6347, 6px 6px 0px #FF4500, 9px 9px 0px #FF8C00, 12px 12px 20px rgba(255, 140, 0, 0.8); }
}

/* Navigation */
.logo-container {
    text-align: center;
    margin: 20px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(45deg, #FF4500, #FF8C00);
    border: 3px solid #FFFF00;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
}

.nav-menu li a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 12px;
    background: #FFFF00;
    border: 2px solid #FF8C00;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Courier Prime', monospace;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: #FF8C00;
    color: #FFFF00;
    transform: scale(1.1);
    box-shadow: 0 0 10px #FF8C00;
}

/* Headers */
.glowing-text {
    color: #FF8C00;
    font-size: 2rem;
    text-align: center;
    text-shadow: 0 0 10px #FF8C00, 0 0 20px #FF4500;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.neon-text {
    color: #00FF00;
    font-size: 1.5rem;
    text-shadow: 0 0 5px #00FF00, 0 0 10px #00FF00;
    margin: 15px 0;
}

/* Rainbow Divider */
.rainbow-divider {
    height: 5px;
    background: linear-gradient(90deg, 
        #FF0000, #FF7F00, #FFFF00, #00FF00, 
        #0000FF, #4B0082, #9400D3, #FF0000);
    margin: 30px 0;
    border-radius: 3px;
    animation: rainbow 3s linear infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}



/* Construction Warning */
.construction-warning {
    margin: 30px 0;
    text-align: center;
}

.warning-tape {
    background: #000;
    border: 20px solid #FFFF00;
    border-image: repeating-linear-gradient(
        45deg,
        #000000,
        #000000 10px,
        #FFFF00 10px,
        #FFFF00 20px
    ) 20;
    padding: 20px;
    position: relative;
}

.warning-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFF00;
    background: #000000;
    padding: 15px;
    font-family: 'Courier Prime', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #FFFF00, 0 0 20px #FFFF00;
    animation: blink 1s infinite;
}

.warning-subtext {
    background: #000000;
    color: #FFFF00;
    padding: 10px 15px;
    font-style: italic;
    font-size: 0.9rem;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

/* Main Content */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin: 40px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #FF8C00;
    border-radius: 10px;
}

/* Links */
.glowing-link {
    color: #00FFFF;
    text-decoration: none;
    text-shadow: 0 0 5px #00FFFF;
    transition: all 0.3s ease;
}

.glowing-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF;
}

/* Lists */
.highlights-list,
.background-list,
.process-list {
    list-style: none;
    padding: 20px;
}

.highlights-list li,
.background-list li,
.process-list li {
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 140, 0, 0.1);
    border-left: 4px solid #FF8C00;
    border-radius: 5px;
}

/* Hit Counter */
.visitor-counter {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(45deg, #FF4500, #FF8C00);
    border: 3px solid #FFFF00;
    border-radius: 10px;
}

.counter-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
}

#hit-counter {
    color: #FFFF00;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 5px #FFFF00;
}

/* Gallery Styles */
.video-container,
.photo-item,
.gif-item {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid #FF8C00;
    border-radius: 10px;
}

.video-frame,
.photo-placeholder,
.gif-placeholder {
    background: rgba(0, 0, 0, 0.5);
    border: 2px dashed #FFFF00;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-title {
    color: #00FF00;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.video-description {
    color: #FFFF00;
    margin-top: 10px;
    font-style: italic;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.gif-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Events Styles */
.event-item {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid #FF8C00;
    border-radius: 10px;
}

.event-date {
    min-width: 100px;
    text-align: center;
}

.date-highlight {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFF00;
    text-shadow: 0 0 5px #FFFF00;
}

.past-event {
    opacity: 0.7;
    background: rgba(255, 140, 0, 0.05);
}

.event-title {
    color: #00FF00;
    margin-bottom: 5px;
}

.event-venue {
    color: #FF8C00;
    font-style: italic;
    margin-bottom: 10px;
}

/* Blog Styles */
.blog-post {
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #FF8C00;
    border-radius: 10px;
}

.post-date {
    color: #FFFF00;
    font-style: italic;
    margin-bottom: 15px;
}

.post-content {
    line-height: 1.6;
}

.post-content h4 {
    color: #00FF00;
    margin: 20px 0 10px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.category-item {
    padding: 20px;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid #FF8C00;
    border-radius: 10px;
    text-align: center;
}

.category-item h4 {
    color: #00FF00;
    margin-bottom: 10px;
}

/* Email Contact Styles */
.email-contact {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #FF8C00;
    border-radius: 10px;
    text-align: center;
}

.email-description {
    color: #FFFF00;
    margin: 20px 0;
    line-height: 1.6;
}

.email-button-container {
    margin: 30px 0;
}

.email-button {
    display: inline-block;
    padding: 20px 30px;
    background: linear-gradient(45deg, #FF4500, #FF8C00);
    border: 3px solid #FFFF00;
    border-radius: 10px;
    color: #000000;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    font-family: 'Courier Prime', monospace;
    transition: all 0.3s ease;
}

.email-button:hover {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    transform: scale(1.05);
    box-shadow: 0 0 20px #FF8C00;
    color: #000000;
}

.form-group {
    margin: 20px 0;
}

.form-label {
    display: block;
    color: #FFFF00;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px;
    background: #000000;
    border: 2px solid #FF8C00;
    border-radius: 5px;
    color: #FFFF00;
    font-family: 'Comic Neue', cursive;
    font-size: 16px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FFFF00;
    box-shadow: 0 0 10px #FF8C00;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #FF4500, #FF8C00);
    border: 2px solid #FFFF00;
    border-radius: 5px;
    color: #000000;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    transform: scale(1.05);
    box-shadow: 0 0 15px #FF8C00;
}



/* Footer */
footer {
    margin-top: 50px;
    padding: 20px;
    background: linear-gradient(45deg, #FF4500, #FF8C00);
    border-top: 3px solid #FFFF00;
    text-align: center;
}

.footer-content p {
    color: #000000;
    font-weight: 700;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wordart-logo {
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .gif-container {
        flex-direction: column;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #FF4500, #FF8C00);
    border: 2px solid #FFFF00;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #FF8C00, #FF4500);
}

/* Selection Styling */
::selection {
    background: #FF8C00;
    color: #000000;
}

::-moz-selection {
    background: #FF8C00;
    color: #000000;
}