/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #1a1a1a;
    overflow-x: hidden;
}

/* Dunkelblau-Variablen für Konsistenz */
:root {
    --dark-blue: #1a237e;
    --medium-blue: #283593;
    --light-blue: #3f51b5;
    --glow-blue: #5c6bc0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header und Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 30, 30, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #1a237e;
    box-shadow: 0 0 20px rgba(26, 35, 126, 0.3);
    border-radius: 0 0 15px 15px;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo i {
    color: #5c6bc0;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #1a7ce8;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #1a7ce8, 0 0 20px #1a7ce8;
    }
    to {
        text-shadow: 0 0 20px #1a7ce8, 0 0 30px #1a7ce8, 0 0 40px #5c6bc0;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1a7ce8;
    text-shadow: 0 0 5px #1a7ce8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #5c6bc0, #1a7ce8);
    box-shadow: 0 0 5px #1a7ce8;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: #252525;
    color: #fff;
    padding: 100px 20px 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 100;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px #1a7ce8, 0 0 40px #5c6bc0;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 20px #1a7ce8, 0 0 40px #5c6bc0;
    }
    to {
        text-shadow: 0 0 30px #1a7ce8, 0 0 60px #5c6bc0, 0 0 80px #3f51b5;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #bbbbbb;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #999999;
    font-weight: 300;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: #1a7ce8;
    border: 1px solid #1a237e;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(26, 35, 126, 0.3);
    text-shadow: 0 0 5px #1a7ce8;
}

.cta-button:hover {
    background: #1a237e;
    color: #ffffff;
    border-color: #5c6bc0;
    box-shadow: 0 0 20px rgba(92, 107, 192, 0.6), 0 0 30px rgba(63, 81, 181, 0.4);
    text-shadow: 0 0 10px #1a7ce8;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* Featured Places */
.featured-places {
    padding: 80px 0;
    background: #2d2d2d;
    border-top: 1px solid #1a237e;
    box-shadow: inset 0 1px 0 rgba(26, 35, 126, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 100;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
}

.place-card {
    background: #222222;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #1a237e;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(26, 35, 126, 0.2);
}

.place-card:hover {
    border-color: #5c6bc0;
    box-shadow: 0 0 20px rgba(92, 107, 192, 0.4), 0 0 30px rgba(63, 81, 181, 0.2);
    transform: translateY(-2px);
}

.place-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.place-card:hover .place-image img {
    filter: grayscale(50%);
}

.place-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1.5rem;
    transform: translateY(0);
}

.place-card:hover .place-overlay {
    background: rgba(0, 0, 0, 0.95);
}

.place-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.place-overlay p {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
    font-weight: 300;
    color: #cccccc;
}

.view-btn {
    display: inline-block;
    background: transparent;
    color: #1a7ce8;
    border: 1px solid #1a237e;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(26, 35, 126, 0.3);
    text-shadow: 0 0 5px #1a7ce8;
}

.view-btn:hover {
    background: #1a237e;
    color: #ffffff;
    border-color: var(--light-blue);
    box-shadow: 0 0 15px rgba(92, 107, 192, 0.6);
    text-shadow: 0 0 10px var(--glow-blue);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #252525;
    border-top: 1px solid var(--dark-blue);
    box-shadow: inset 0 1px 0 rgba(26, 35, 126, 0.3);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--dark-blue);
    color: #dddddd;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 5px rgba(26, 35, 126, 0.2);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--dark-blue);
    color: var(--glow-blue);
    border-color: var(--light-blue);
    box-shadow: 0 0 15px rgba(92, 107, 192, 0.5);
    text-shadow: 0 0 8px var(--glow-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--dark-blue);
    box-shadow: 0 0 5px rgba(26, 35, 126, 0.2);
}

.gallery-item:hover {
    border-color: var(--light-blue);
    box-shadow: 0 0 20px rgba(92, 107, 192, 0.4);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: grayscale(70%);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #2d2d2d;
    border-top: 1px solid var(--dark-blue);
    box-shadow: inset 0 1px 0 rgba(26, 35, 126, 0.3);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 100;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #bbbbbb;
    line-height: 1.8;
    font-weight: 300;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 100;
    color: var(--glow-blue);
    text-shadow: 0 0 15px var(--glow-blue), 0 0 25px var(--light-blue);
    animation: statGlow 2s ease-in-out infinite alternate;
}

@keyframes statGlow {
    from {
        text-shadow: 0 0 15px var(--glow-blue), 0 0 25px var(--light-blue);
    }
    to {
        text-shadow: 0 0 25px var(--glow-blue), 0 0 35px var(--light-blue), 0 0 45px var(--medium-blue);
    }
}

.stat-label {
    color: #999999;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: grayscale(100%);
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #252525;
    color: #fff;
    border-top: 1px solid var(--dark-blue);
    box-shadow: inset 0 1px 0 rgba(26, 35, 126, 0.3);
}

.contact-section .section-title {
    color: #ffffff;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #bbbbbb;
    line-height: 1.8;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: var(--light-blue);
    width: 20px;
    text-shadow: 0 0 5px var(--glow-blue);
}

.contact-form {
    flex: 1;
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--dark-blue);
    box-shadow: 0 0 15px rgba(26, 35, 126, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #333333;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-color);
    opacity: 0.6;
    font-weight: 300;
    transition: color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #5c6bc0;
    box-shadow: 0 2px 10px rgba(92, 107, 192, 0.3);
}

.submit-btn {
    background: transparent;
    color: #1a7ce8;
    border: 1px solid #1a237e;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 0 10px rgba(26, 35, 126, 0.3);
    text-shadow: 0 0 5px #1a7ce8;
}

.submit-btn:hover {
    background: #1a237e;
    color: #ffffff;
    border-color: #5c6bc0;
    box-shadow: 0 0 20px rgba(92, 107, 192, 0.6);
    text-shadow: 0 0 10px #1a7ce8;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--text-color);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
    box-shadow: inset 0 1px 0 rgba(26, 35, 126, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light-blue);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-shadow: 0 0 8px var(--glow-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--glow-blue);
    text-shadow: 0 0 5px var(--glow-blue);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bbbbbb;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--glow-blue);
}

.footer-contact-item i {
    color: var(--light-blue);
    width: 18px;
    text-shadow: 0 0 5px var(--glow-blue);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: transparent;
    color: #aaaaaa;
    border: 1px solid var(--dark-blue);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(26, 35, 126, 0.2);
}

.social-links a:hover {
    background: var(--dark-blue);
    color: var(--glow-blue);
    border-color: var(--light-blue);
    box-shadow: 0 0 15px rgba(92, 107, 192, 0.5);
    text-shadow: 0 0 8px var(--glow-blue);
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    color: #aaaaaa;
    border: 1px solid var(--dark-blue);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(26, 35, 126, 0.2);
    font-size: 1.2rem;
}

.social-btn:hover {
    background: var(--dark-blue);
    color: var(--glow-blue);
    border-color: var(--light-blue);
    box-shadow: 0 0 15px rgba(92, 107, 192, 0.5);
    text-shadow: 0 0 8px var(--glow-blue);
    transform: translateY(-2px);
}

.social-btn.instagram:hover {
    color: #E4405F;
    border-color: #E4405F;
    box-shadow: 0 0 15px rgba(228, 64, 95, 0.5);
    text-shadow: 0 0 8px #E4405F;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.8rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(20, 20, 20, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll-Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* ==========================================
   Guestbook Section
   ========================================== */
.guestbook-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.guestbook-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(26, 35, 126, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(92, 107, 192, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.guestbook-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Guestbook Form */
.guestbook-form-container {
    background: rgba(30, 30, 30, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(26, 35, 126, 0.3);
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.guestbook-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.guestbook-form .form-group input,
.guestbook-form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(26, 35, 126, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.guestbook-form .form-group input:focus,
.guestbook-form .form-group textarea:focus {
    outline: none;
    border-color: #5c6bc0;
    box-shadow: 0 0 15px rgba(92, 107, 192, 0.2);
    background: rgba(26, 35, 126, 0.1);
}

.guestbook-form .form-group input::placeholder,
.guestbook-form .form-group textarea::placeholder {
    color: #666;
}

.guestbook-form .submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3);
}

.guestbook-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 107, 192, 0.4);
    background: linear-gradient(135deg, #283593 0%, #5c6bc0 100%);
}

/* Guestbook Entries */
.entries-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(26, 35, 126, 0.3);
}

.entries-title i {
    color: #5c6bc0;
}

.entries-title span {
    color: #5c6bc0;
    font-weight: 600;
}

.entries-container {
    display: grid;
    gap: 20px;
}

.guestbook-entry {
    background: rgba(30, 30, 30, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(26, 35, 126, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease;
    position: relative;
    overflow: hidden;
}

.guestbook-entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1a237e 0%, #5c6bc0 100%);
}

.guestbook-entry:hover {
    transform: translateX(5px);
    border-color: rgba(92, 107, 192, 0.4);
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.2);
}

.entry-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.entry-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1a237e 0%, #5c6bc0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info .entry-date {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-message {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-left: 57px;
}

.no-entries {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-entries i {
    font-size: 4rem;
    color: rgba(26, 35, 126, 0.3);
    margin-bottom: 20px;
    display: block;
}

.no-entries p {
    font-size: 1.1rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .guestbook-form-container {
        padding: 25px;
    }
    
    .guestbook-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .entry-message {
        padding-left: 0;
        margin-top: 15px;
    }
    
    .guestbook-section {
        padding: 60px 0;
    }
}