
    /* ===== General Reset ===== */
{
    box-sizing: border-box;
    max-width: 100%; /* Prevents elements from exceeding viewport width */
    margin: 0;
    padding: 0;
}

/* ===== Body Styling ===== */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    background-color: #f9f9f9;
}

/* ===== Hero Section 1 (Introduction) ===== */

.hero-section1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    padding: 0 5%;
}

.hero-text1 {
    width: 100%;
    max-width: 1500px;
    padding: 30px;
    color: #0056b3;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    text-align: center;
}

.hero-text1 h1 {
    font-size: 2.5rem; /* Optimized for mobile */
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-text1 p {
    font-size: 1rem;
    line-height: 1.5;
}

/* ===== Hero Section 2 (Left Text & Right Image) ===== */


.hero-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

/* Heading Styling */



.hero-text {
    flex: 1;
    max-width: 600px;
    padding: 50px;
    color: #0056b3;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    text-align: left;
    min-width: 300px;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.hero-text h1 {
    flex: 1;
    font-size: 2rem; /* Larger font for prominence */
    font-weight: medium;
    /* text-transform: uppercase; /* Classic newspaper heading style */ 
    /* letter-spacing: 1px; /* Adds spacing between letters */
    /* color: #111; /* Slightly darker tone */
    /* border-bottom: 2px solid #0056b3; /* Underline effect */
    
    margin-bottom: 10px;
    line-height: 1.5;
}



/* List inside hero section */
.hero-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.hero-text ul li {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Right-Side Image */
.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    background: url('/public/assets/branding/vintage-computer-museum.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 500px;
    border-radius: 8px;
    margin-top: 20px;
}

/* ===== Exhibits Section ===== */
.exhibits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 5%;
}

.exhibit-box {
    width: 280px;
    margin: 10px;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 12px 0 rgba(15, 15, 15, 0.37);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.exhibit-box h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 9%;
    margin-top: 3%;
}

.exhibit-box p {
    font-size: 0.9rem;
    font-style: italic;
    color: #555;
    line-height: 1.4;
}

/* ===== Computer Showcase Section ===== */
.computer-showcase {
    padding: 40px 5%;
    text-align: center;
}

.computer-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 6%;
    font-weight: bold;
}

.computer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 90px;
    width: 90%;
    margin: 0 auto;
}

.computer-item {
    width: 90%;
    max-width: 400px;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 12px rgba(19, 23, 151, 0.2);
    transform: rotate(-2deg);
    padding: 15px;
}

/* Images inside Computer Showcase */
.computer-item img {
    width: 90%;
    margin: 10px auto;
    border-radius: 8px;
}

.computer-details p {
        font-size: 1rem;
        font-family: 'Courier New', monospace; /* Handwritten font */
        margin-top: 10px;
    }

/* ===== Responsive Fixes for Mobile (688x3200 and other small screens) ===== */
@media (max-width: 768px) {
    /* Hero Sections Adjustments */
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        width: 100%;
        text-align: center;
        padding: 30px;
    }

    .hero-image {
        width: 100%;
        height: 250px;
    }

    /* Exhibit Boxes Adjustments */
    .exhibit-box {
        width: 100%;
        max-width: 350px;
    }

    /* Computer Showcase Adjustments */
    .computer-showcase h2 {
        font-size: 2rem;
    }

    .computer-item {
        width: 100%;
        max-width: 350px;
    }

    



}

