/* style.css */

body {
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar-brand {
    font-weight: bold;
    font-size: 28px;
    color: #FFA500 !important;
}

.nav-link {
    color: #ffffff !important;
    font-size: 16px;
    margin: 0 8px;
}

.nav-link:hover {
    color: #FFA500 !important;
}

/* Buttons */
.contact-btn,
.btn-warning {
    background-color: #FFA500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover,
.btn-warning:hover {
    background-color: #ff8000;
}

/* Content Sections */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.box, .boxsm {
    background: rgba(20, 20, 20, 0.9);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 800px;
}

.boxsm {
    height: auto;
    max-width: 500px;
}

.box h2, .boxsm h2 {
    color: #FFA500;
    font-size: 26px;
    margin-bottom: 15px;
}

.box p, .boxsm p {
    font-size: 18px;
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    background-color: rgba(20, 20, 20, 0.9);
    color: white;
    padding: 40px 20px;
    margin-top: 50px;
    text-align: center;
}

.founder-section h2 {
    font-size: 26px;
    color: #FFA500;
}

.founder-section p {
    font-size: 18px;
}

.founder-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px 0;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 16px;
}

.tagline {
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
}

.comic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    padding: 20px;
}

.comic-grid img {
    width: 100%;
    height: auto;
    border: 4px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.comic-grid img:hover {
    transform: scale(1.05);
    z-index: 1;
}


/* Responsive Design */
@media (max-width: 600px) {
    .box, .boxsm {
        width: 100%;
        padding: 20px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .founder-image {
        width: 180px;
        height: 180px;
    }
}
