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

body {
    font-family: 'Comic Sans MS', 'Arial Black', sans-serif;
    background: #fff8dc;
    color: #000;
    line-height: 1.4;
}

.comic-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    background: #fff8dc;
}

/* Comic Panel Base */
.comic-panel {
    background: white;
    border: 4px solid #000;
    box-shadow: 4px 4px 0 #000;
    position: relative;
    margin-bottom: 2rem;
}

.panel-border {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid #000;
    pointer-events: none;
}

/* Header Panel */
.header-panel {
    background: linear-gradient(135deg, #ff0000 0%, #ff6b00 100%);
    padding: 1rem 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    width: 100px;
    height: 100px;
    border: 4px solid #000;
    border-radius: 50%;
    box-shadow: 4px 4px 0 #000;
    background: white;
    padding: 0.3rem;
    object-fit: cover;
}

.header-right {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.comic-title {
    font-size: 2.5rem;
    color: #ffff00;
    text-shadow: 3px 3px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
    letter-spacing: 3px;
    margin: 0;
}

.comic-nav {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.comic-nav a {
    color: white;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    background: #000;
    border: 3px solid #fff;
    transition: all 0.2s;
    text-shadow: none;
}

.comic-nav a:hover {
    background: #ffff00;
    color: #000;
    transform: rotate(-2deg);
}

/* Hero Panel */
.hero-row {
    margin-bottom: 3rem;
}

.hero-panel {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speech-bubble {
    position: absolute;
    background: white;
    border: 4px solid #000;
    border-radius: 50% 50% 50% 0;
    padding: 2rem;
    max-width: 400px;
    box-shadow: 4px 4px 0 #000;
}

.speech-bubble.top-left {
    top: 30px;
    left: 30px;
}

.speech-bubble h2 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.speech-bubble p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.comic-effect {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 4px 4px 0 #ff0000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000;
    transform: rotate(-10deg);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: rotate(-10deg) scale(1); }
    50% { transform: rotate(-10deg) scale(1.1); }
}

/* Comic Button */
.comic-btn {
    background: #ff0000;
    color: #ffff00;
    border: 4px solid #000;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 900;
    font-family: 'Comic Sans MS', sans-serif;
    cursor: pointer;
    box-shadow: 4px 4px 0 #000;
    text-transform: uppercase;
    transition: all 0.2s;
}

.comic-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000;
}

.comic-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000;
}

.comic-btn.large {
    width: 100%;
    padding: 1.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 3rem 0 2rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    color: #ff0000;
    text-shadow: none;
    display: inline-block;
    background: white;
    padding: 1rem 2rem;
    border: 4px solid #000;
    transform: rotate(-2deg);
}

.header-burst {
    position: absolute;
    top: -20px;
    right: 20%;
    background: #ffff00;
    color: #ff0000;
    border: 4px solid #000;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    transform: rotate(15deg);
    box-shadow: 4px 4px 0 #000;
}

/* Panel Rows */
.panel-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Guide Panel */
.guide-panel {
    padding: 1.5rem;
    position: relative;
}

.guide-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.guide-sticker {
    position: absolute;
    bottom: 15px;
    right: 30px;
    z-index: 10;
}

.guide-sticker img {
    width: 100px;
    height: auto;
    transform: rotate(8deg);
    filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.3));
    border: 3px solid #000;
    background: white;
}

.guide-image {
    flex-shrink: 0;
}

.guide-image img {
    width: 220px;
    height: auto;
    object-fit: contain;
    border: 3px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 0 #000;
}

.guide-info {
    flex-grow: 1;
    margin-right: 120px;
}

.guide-info h3 {
    font-size: 1.6rem;
    color: #ff0000;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.guide-title {
    font-size: 1rem;
    color: #ff6b00;
    font-weight: 900;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.guide-info > p {
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.guide-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.guide-highlights li {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Tour Panels */
.tour-panel {
    display: flex;
    flex-direction: column;
}

.tour-panel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 4px solid #000;
}

.panel-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.comic-badge {
    display: inline-block;
    background: #ff0000;
    color: #ffff00;
    border: 3px solid #000;
    padding: 0.3rem 1rem;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    align-self: flex-start;
    transform: rotate(-3deg);
}

.comic-badge.adventure {
    background: #00ff00;
    color: #000;
}

.comic-badge.cultural {
    background: #0000ff;
    color: #ffff00;
}

.panel-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.tour-meta {
    color: #ff0000;
    font-weight: 900;
    margin-bottom: 1rem;
}

.panel-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.comic-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.comic-list li {
    padding: 0.5rem 0;
    font-weight: 700;
}

.price-burst {
    background: #ffff00;
    border: 4px solid #000;
    padding: 1rem;
    text-align: center;
    margin: 1rem 0;
    transform: rotate(-2deg);
}

.price-big {
    font-size: 3rem;
    font-weight: 900;
    color: #ff0000;
}

.price-small {
    font-size: 1rem;
    color: #000;
}

/* Food Panels */
.food-row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.food-panel.small {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.food-panel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #000;
}

.food-caption {
    padding: 1rem;
    flex-grow: 1;
}

.food-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.food-caption .loc {
    color: #ff0000;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.food-tag {
    display: inline-block;
    background: #00ff00;
    color: #000;
    border: 3px solid #000;
    padding: 0.3rem 0.8rem;
    font-weight: 900;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Blog Panels */
.blog-panel.large {
    grid-column: 1 / 2;
}

.blog-panel img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 4px solid #000;
}

.blog-text {
    padding: 2rem;
}

.blog-text h3 {
    font-size: 2rem;
    margin: 1rem 0;
    text-transform: uppercase;
}

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

.comic-link {
    color: #ff0000;
    font-weight: 900;
    text-decoration: none;
    font-size: 1.2rem;
}

.comic-link:hover {
    color: #00ff00;
}

.panel-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-panel.mini {
    padding: 0;
}

.blog-panel.mini img {
    height: 150px;
}

.blog-panel.mini h4 {
    padding: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Calendar */
.calendar-panel {
    padding: 2rem;
}

.calendar-comic {
    max-width: 800px;
    margin: 0 auto;
}

.cal-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.cal-day {
    aspect-ratio: 1;
    border: 3px solid #000;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s;
}

.cal-day.empty {
    background: #f0f0f0;
    border: 3px dashed #ccc;
}

.cal-day.available {
    background: #00ff00;
    border: 3px solid #000;
}

.cal-day.booked {
    background: #ff0000;
    color: white;
    border: 3px solid #000;
}

.cal-day:hover:not(.empty) {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 4px 4px 0 #000;
}

.cal-day span {
    font-size: 0.7rem;
    font-weight: 700;
}

/* Pricing Panels */
.price-panel {
    padding: 2rem;
}

.price-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #ff0000;
}

.price-panel.accent {
    background: #ffff00;
}

.discount-comic div {
    background: white;
    border: 3px solid #000;
    padding: 1rem;
    margin-bottom: 1rem;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
}

.discount-comic strong {
    color: #ff0000;
    font-size: 1.3rem;
}

/* Contact Form */
.contact-panel.large {
    padding: 2rem;
}

.comic-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comic-form input,
.comic-form select,
.comic-form textarea {
    padding: 1rem;
    border: 4px solid #000;
    font-family: 'Comic Sans MS', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.comic-form input:focus,
.comic-form select:focus,
.comic-form textarea:focus {
    outline: none;
    background: #ffff00;
}

/* Contact Info */
.contact-info {
    padding: 1.5rem;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ff0000;
}

.contact-info p {
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info.social {
    background: #ffff00;
}

.social-comic {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border: 4px solid #000;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    transition: all 0.2s;
}

.social-comic:hover {
    transform: rotate(-2deg);
}

.social-comic.youtube {
    background: #ff0000;
    color: white;
}

.social-comic.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
    color: white;
}

/* Footer */
.footer-panel {
    background: #000;
    color: #ffff00;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer-panel p {
    margin: 0.5rem 0;
    font-weight: 900;
}

/* Responsive */
@media (max-width: 768px) {
    /* Base Mobile Styles */
    .comic-page {
        padding: 0.5rem;
    }

    /* Header Mobile Styles */
    .header-panel {
        padding: 1rem;
    }

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

    .header-logo img {
        width: 85px;
        height: 85px;
    }

    .header-right {
        align-items: center;
    }

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

    .comic-nav {
        justify-content: center;
        gap: 0.5rem;
    }

    .comic-nav a {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    /* Hero Section Mobile Styles */
    .hero-panel {
        height: 400px;
    }

    .speech-bubble {
        position: absolute;
        top: 20px;
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 1rem;
        border-radius: 20px;
    }

    .speech-bubble h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .speech-bubble p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .speech-bubble .comic-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .comic-effect {
        display: none;
    }

    /* Section Headers Mobile */
    .section-header {
        margin: 2rem 0 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
        transform: rotate(-1deg);
    }

    .header-burst {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
        top: -15px;
        right: 10%;
    }

    /* Panel Rows Mobile */
    .panel-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Guide Panel Mobile */
    .guide-panel {
        padding: 1rem;
    }

    .guide-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-bottom: 90px;
    }

    .guide-info {
        margin-right: 0;
    }

    .guide-image img {
        width: 160px;
        height: auto;
    }

    .guide-info h3 {
        font-size: 1.3rem;
    }

    .guide-title {
        font-size: 0.9rem;
    }

    .guide-info > p {
        font-size: 0.9rem;
        text-align: left;
    }

    .guide-highlights {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }

    .guide-highlights li {
        font-size: 0.85rem;
    }

    .guide-sticker {
        bottom: 10px;
        right: 20px;
    }

    .guide-sticker img {
        width: 90px;
    }

    /* Tour Panels Mobile */
    .tour-panel img {
        height: 200px;
    }

    .panel-info {
        padding: 1rem;
    }

    .panel-info h3 {
        font-size: 1.3rem;
    }

    /* Food Panels Mobile */
    .food-row {
        grid-template-columns: 1fr;
    }

    .food-panel.small {
        height: auto;
        min-height: 350px;
    }

    /* Blog Section Mobile */
    .blog-panel.large {
        grid-column: 1;
    }

    .blog-panel img {
        height: 200px;
    }

    .blog-text {
        padding: 1rem;
    }

    .blog-text h3 {
        font-size: 1.4rem;
    }

    .panel-column {
        gap: 1.5rem;
    }

    .blog-panel.mini img {
        height: 120px;
    }

    .blog-panel.mini h4 {
        font-size: 1rem;
    }

    /* Calendar Mobile Styles */
    .calendar-panel {
        padding: 1rem;
    }

    .cal-header {
        font-size: 0.7rem;
        gap: 0.2rem;
    }

    .cal-grid {
        gap: 0.2rem;
    }

    .cal-day {
        border: 2px solid #000;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .cal-day.empty {
        border: 2px dashed #ccc;
    }

    .cal-day.available,
    .cal-day.booked {
        border: 2px solid #000;
    }

    .cal-day span {
        font-size: 0.5rem;
    }

    .cal-day:hover:not(.empty) {
        transform: none;
        box-shadow: none;
    }

    /* Pricing Panels Mobile */
    .price-panel {
        padding: 1.5rem;
    }

    .price-panel h3 {
        font-size: 1.5rem;
    }

    .discount-comic div {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .discount-comic strong {
        font-size: 1.1rem;
    }

    /* Contact Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-panel.large {
        padding: 1rem;
    }

    .comic-form input,
    .comic-form select,
    .comic-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Contact Info Mobile */
    .contact-info {
        padding: 1rem;
    }

    .contact-info h4 {
        font-size: 1.3rem;
    }

    .social-comic {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .footer-panel {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
}
