/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&family=Lora:wght@400;500;600&display=swap');

@font-face {
    font-family: 'Calibre';
    src: url('fonts/Calibre-Regular.woff') format('woff'),
         url('fonts/Calibre-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Calibre';
    src: url('fonts/Calibre-RegularItalic.woff') format('woff'),
         url('fonts/Calibre-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Calibre';
    src: url('fonts/Calibre-Medium.woff') format('woff'),
         url('fonts/Calibre-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

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

body {
    font-family: 'Calibre', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c2c2c;
}

/* Main Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 6rem;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.3rem;
    color: #7a7a7a;
    font-weight: 300;
}

/* Sections */
.section {
    margin-bottom: 6rem;
    scroll-margin-top: 6rem;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.content-box {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.content-box p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Music Lists */
.music-list {
    list-style: none;
    margin-top: 1.5rem;
}

.music-list li {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.music-list li:last-child {
    border-bottom: none;
}

.music-list strong {
    font-size: 1.1rem;
    color: #2c2c2c;
}

.note {
    margin-top: 0.5rem;
    color: #6a6a6a;
    font-style: italic;
    font-size: 0.95rem;
}

.favorites-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.favorites-list li {
    padding: 1rem;
    background-color: #f8f8f8;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #4a4a4a;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.photo-figure {
    margin: 0;
}

.photo-item {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    margin-bottom: 0;
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.photo-figure figcaption {
    font-size: 0.85rem;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

/* Blog Posts */
.blog-post {
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.blog-post:last-child {
    margin-bottom: 0;
}

.blog-post h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.blog-post h3 a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post h3 a:hover {
    color: #5a5a5a;
}

.date {
    color: #9a9a9a;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 0.5rem;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

/* Blog Post Pages */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header nav {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav h1 {
    font-family: 'Lora', serif;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

header nav h1 a {
    color: #2c2c2c;
    text-decoration: none;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

header nav ul a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

header nav ul a:hover {
    color: #2c2c2c;
}

header nav ul a.active {
    color: #2c2c2c;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 2px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 6rem;
}

main article {
    margin-top: 1.5rem;
}

main article img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

/* About Page Two-Column Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 8rem;
}

.about-image figure {
    margin: 0 0 2rem 0;
}

.about-image figure:last-child {
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-bottom: 0;
}

.about-image figcaption {
    font-size: 0.85rem;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

article h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

article .date {
    display: block;
    margin-bottom: 2rem;
}

article p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

article strong {
    color: #2c2c2c;
    font-weight: 600;
}

article p a {
    color: #4A90E2;
    text-decoration: none;
}

article p a:hover {
    text-decoration: underline;
}

article hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0;
}

.post-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 2rem auto;
    border-radius: 8px;
    display: block;
}

.image-caption {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-style: italic;
    text-align: center;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

main > p {
    margin-top: 3rem;
}

main > p a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

main > p a:hover {
    color: #2c2c2c;
}

/* Newsletter Section */
.newsletter-box {
    text-align: center;
}

.newsletter-button {
    display: inline-block;
    margin: 2rem 0 1rem;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-button:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.small-note {
    font-size: 0.85rem;
    color: #9a9a9a;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: white;
    border-top: 1px solid #e0e0e0;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
}

footer p {
    color: #7a7a7a;
    font-size: 0.9rem;
    margin: 0;
}

/* Homepage Illustration Grid */
.homepage {
    background-color: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-nav {
    padding: 2rem;
    text-align: center;
}

.top-nav .logo {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.illustration-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem;
    row-gap: 1rem;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    align-items: center;
    justify-items: center;
}


.illustration-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 2rem;
}

.illustration-img {
    max-width: 200px;
    height: auto;
}

.item-label {
    font-family: 'Shadows Into Light', cursive;
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.illustration-item:hover .item-label {
    opacity: 1;
}

/* Illustration Hover Animations */
@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes steam {
    0% { opacity: 0.7; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-15px); }
}

@keyframes blink {
    0%, 45%, 55%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

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

/* Animations removed */


/* Newsletter Page Specific */
.newsletter-page {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 3rem;
}

.newsletter-page h2 {
    margin-bottom: 2rem;
}

.newsletter-page p {
    margin-bottom: 1.5rem;
}

/* Blog Posts List */
.blog-posts-list {
    max-width: 800px;
}

/* Music Page */
.music-page {
    max-width: 1100px;
    margin: 0 auto;
}

.music-page p:first-of-type {
    margin-top: 2rem;
}

.music-intro {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Contact Page */
.contact-page {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page h2 {
    margin-bottom: 2rem;
}

.contact-page > p:first-of-type {
    margin-top: 2rem;
}

.contact-page p {
    margin-bottom: 1.5rem;
}

.contact-info {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.contact-info a {
    color: #2c2c2c;
    text-decoration: none;
    border-bottom: 2px solid #2c2c2c;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #5a5a5a;
    border-bottom-color: #5a5a5a;
}

/* Responsive Design */

/* Tablet styles (portrait and landscape) */
@media (max-width: 1024px) and (min-width: 769px) {
    .illustration-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 2.5rem;
    }

    .illustration-img {
        max-width: 180px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        position: static;
        display: flex;
        gap: 2rem;
        justify-content: center;
    }

    .about-image figure {
        flex: 1;
        max-width: 300px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    main {
        padding: 2rem 3rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .illustration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
        row-gap: 0.5rem;
    }

    .illustration-item {
        padding: 1rem;
    }

    .illustration-img {
        max-width: 120px;
    }

    .item-label {
        opacity: 1;
        font-size: 0.85rem;
    }

    .top-nav {
        padding: 1.5rem;
    }

    .top-nav .logo {
        font-size: 1.5rem;
    }

    footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .subtitle {
        font-size: 1.1rem;
    }

    .content-box {
        padding: 2rem;
    }

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

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .favorites-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* About page - stack on mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        position: static;
        order: -1;
    }

    .about-image img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    /* Hamburger menu for mobile */
    .hamburger {
        display: flex;
    }

    header nav .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0 !important;
    }

    header nav .nav-menu li {
        margin: 1rem 0;
    }

    header nav .nav-menu.active {
        left: 0;
    }

    header nav .nav-menu a {
        font-size: 1.1rem;
    }

    /* Music page - stack on mobile */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

/* Guestbook Styles - 90s RETRO EDITION */
.guestbook-content {
    max-width: 700px;
    margin: 0 auto;
}

.guestbook-content.retro-vibes {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    margin-top: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
    border: 3px solid #ffd700;
    position: relative;
}

.space-cat {
    position: absolute;
    font-size: 4rem;
    animation: float-cat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.left-cat {
    top: 20%;
    left: -80px;
    animation-delay: 0s;
}

.right-cat {
    top: 40%;
    right: -80px;
    animation-delay: 1.5s;
}

@keyframes float-cat {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.guestbook-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.retro-stars {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.retro-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    letter-spacing: 2px;
    color: #fff;
    text-shadow:
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff,
        3px 3px 0px #000;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
}

.retro-subtitle {
    font-size: 1.2rem;
    color: #ffff00;
    margin: 1rem 0;
    font-weight: bold;
    text-shadow: 2px 2px 0px #000;
}

.counter {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #000;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #00ff00;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    box-shadow:
        0 0 10px rgba(0, 255, 0, 0.5),
        inset 0 0 10px rgba(0, 255, 0, 0.2);
}

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

.guestbook-intro p {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

/* Guestbook Form */
.guestbook-form-container {
    background: linear-gradient(to bottom, #ffd93d 0%, #ff6b6b 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    border: 5px dotted #fff;
    box-shadow:
        0 0 20px rgba(255, 107, 107, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.guestbook-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    text-shadow: 2px 2px 0px #000;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 3px solid #000;
    border-radius: 10px;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #fff 0%, #e0e0ff 100%);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow:
        0 0 10px #ff00ff,
        inset 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.form-group small {
    font-size: 0.85rem;
    color: #fff;
    font-style: italic;
    text-shadow: 1px 1px 0px #000;
}

.submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    border: 4px solid #fff;
    border-radius: 20px;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow:
        0 5px 15px rgba(0, 255, 0, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #00cc00, #00ff00);
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 7px 20px rgba(0, 255, 0, 0.6),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Retro Webring */
.webring {
    background: #c0c0c0;
    border: 4px ridge #fff;
    padding: 1rem;
    margin: 3rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
}

.webring-header {
    display: grid;
    grid-template-columns: 150px 1fr 150px;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border: 3px solid #000;
    margin-bottom: 0.5rem;
}

.webring-logo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid #000;
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}

.webring-logo-big {
    font-size: 1.1rem;
    color: #ff0000;
    display: block;
    margin: 0.25rem 0;
}

.webring-text {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.webring-text strong {
    color: #0000ff;
}

.webring-nav {
    background: #fff;
    border: 3px solid #000;
    padding: 0.75rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.webring-link {
    color: #0000ff;
    text-decoration: none;
    font-weight: bold;
}

.webring-link:hover {
    color: #ff0000;
    text-decoration: underline;
}

/* Guestbook Entries */
.guestbook-entries {
    margin-top: 3rem;
}

.retro-divider {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0;
    color: #ffff00;
    text-shadow:
        0 0 10px #ff00ff,
        2px 2px 0px #000;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
    letter-spacing: 2px;
}

.guestbook-entry {
    padding: 1.5rem;
    background: linear-gradient(to right, #ffd93d, #ff9a9e, #a18cd1);
    border: 4px double #fff;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.entry-name {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 0px #000;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
}

.entry-date {
    font-size: 0.85rem;
    color: #fff;
    font-style: italic;
    text-shadow: 1px 1px 0px #000;
}

.entry-message {
    color: #000;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 0.75rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .guestbook-form-container {
        padding: 1.5rem;
    }

    .guestbook-intro h2 {
        font-size: 2rem;
    }

    .submit-btn {
        width: 100%;
    }

    .guestbook-entry {
        padding: 1.25rem;
    }

    .space-cat {
        font-size: 2.5rem;
    }

    .left-cat {
        left: -40px;
    }

    .right-cat {
        right: -40px;
    }

    .retro-title {
        font-size: 1.8rem;
    }

    .webring-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .webring-logo:first-child,
    .webring-logo:last-child {
        display: none;
    }

    .webring-nav {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}
