/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Main Content */
main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border: 4px solid #333;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

main::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    border-radius: 25px;
    z-index: -1;
}

h1 {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    color: #FF6B6B;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0px #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #4ECDC4;
    margin: 2rem 0 1rem 0;
    text-shadow: 2px 2px 0px #333;
    text-transform: uppercase;
    border-bottom: 3px solid #333;
    padding-bottom: 0.5rem;
}

h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #45B7D1;
    margin: 1.5rem 0 0.5rem 0;
    text-shadow: 1px 1px 0px #333;
    text-transform: uppercase;
}

h4 {
    font-weight: 700;
    color: #333;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: #444;
    font-size: 1rem;
}

ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: #555;
}

strong {
    color: #333;
    font-weight: 700;
}

/* Highlight boxes */
.highlight-box {
    background: #FFE66D;
    border: 3px solid #333;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: #E8F6FF;
    border: 3px solid #45B7D1;
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    font-weight: 600;
}

/* Footer Styles */
.footer-comic {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 5px solid #FF6B6B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #FFE66D;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #000;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-section a:hover {
    color: #FFE66D;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #FF6B6B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #FFE66D;
    color: #333;
    transform: translateY(-3px);
    border-color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .comic-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        border: 3px solid #333;
        border-top: none;
        border-radius: 0 0 15px 15px;
    }
    
    .comic-nav.active {
        display: block;
    }
    
    .comic-nav ul {
        flex-direction: column;
        padding: 1rem;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        border-radius: 10px;
    }
    
    main {
        margin: 1rem;
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .highlight-box,
    .contact-info {
        padding: 1rem;
    }
}
