﻿/* === GLOBAL === */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #eaeaea;
}

.site-wrapper {
    width: 70%;
    margin: 40px auto 0 auto;
    background-color: white;
}
.spacing-20 {
    margin: 20px;
}


/* === TOP BAR === */
.top-bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    margin: 20px;
    height: 110px;
    padding: 0 20px;
   
}

    
    .top-bar a img {
        height: 70px;
        width: auto;
        object-fit: contain;
        border-radius: 20px;
    }

.center-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1;
}

.title {
    font-size: 100px;
    font-weight: 900;
    color: #FFC900;
    margin: 21px 0 0 0;
}


.subtitle {
    font-size: 16px;
    color: #184BAF;
    margin-top: 4px;
}

/* === SOCIAL MEDIA BAR === */
.top-social-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 40px; 
    margin: 0; 
    border-bottom: 1px solid #ddd;
    gap: 15px; 
    height: 40px; 
}

    .top-social-bar a img {
        width: 22px;
        height: 22px;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .top-social-bar a:hover img {
        transform: scale(1.2);
    }


/* === NAVBAR === */
.navbar {
    background-color: #3E0976;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 20px;
    margin: 5px;
    padding: 10px 0; /* Keep padding top-bottom only */
   
}

    .navbar a {
        color: white;
        font-weight: bold;
        text-decoration: none;
        font-size: 20px;
        transition: background 0.3s ease;
        margin: 5px 10px;
    }

        /* 🎯 Add extra space before first link and after last link */
        .navbar a:first-child {
            margin-left: 40px;
        }

        .navbar a:last-child {
            margin-right: 40px;
        }

        .navbar a:hover {
            background-color: #3e0bbd;
            border-radius: 8px;
        }



/* === MAIN CONTAINER === */
.main-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    background-color: white;
    width: 100%;
    box-sizing: border-box;
}

/* === CURRENT ISSUE / CUSTOM SECTIONS === */
.container {
    width: 90%;
    margin: 0 auto;
    transform: scale(1);
    background-color: white;
}

.advert-section {
    border: 2px solid #5d0fff;
    margin: 30px auto;
    width: 90%;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
}

    .advert-section h2 {
        font-size: 36px;
        font-weight: bold;
        color: black;
    }

.coming-soon-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    margin-top: 30px;
    background-color: #e9f3f9;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
}

.coming-soon-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .coming-soon-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 0 10px #aaa;
        object-fit: cover;
    }

.coming-soon-text {
    flex: 0 0 60%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

    .coming-soon-text h2 {
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .coming-soon-text ul {
        list-style: disc;
        padding-left: 20px;
        color: #333;
    }

    .coming-soon-text p {
        margin-top: 15px;
        color: #444;
    }

.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 25px;
    padding: 30px;
    margin-top: 20px;
}

.grid-box {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    transition: background 0.3s, transform 0.3s;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .grid-box:hover {
        background-color: #f0f8ff;
        transform: scale(1.03);
    }

/* === ABOUT US PAGE STYLES === */

.full-width-section {
    width: 70%;
    
    
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #3E0976;
    font-weight: bold;
    margin-bottom: 30px;
}

.about-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

    .about-text p {
        margin-bottom: 15px;
    }

.about-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-weight: bold;
    color: #555;
    text-align: left;
}

/* ✅ Responsive Tweaks */
@media (max-width: 768px) {
    .about-footer {
        text-align: center;
    }

    .section-title {
        font-size: 24px;
    }
}

/* === SUBSCRIPTION PAGE STYLES === */

.qr-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #ccc;
    display: block;
    margin: 0 auto;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    font-style: italic;
}

.form-label {
    font-weight: 600;
    color: #333;
}

input[type="text"].form-control:read-only {
    background-color: #f1f1f1;
    cursor: not-allowed;
}

/* Ensure file input is styled consistently */
input[type="file"].form-control {
    padding: 8px;
}

/* Button style override for consistency */
button[type="submit"] {
    font-size: 16px;
    font-weight: bold;
}

/* ✅ Responsive Improvements */
@media (max-width: 768px) {
    .qr-img {
        max-width: 200px;
    }

    .btn {
        font-size: 15px;
    }
}
/* === CONTACT US PAGE === */

.full-width-section {
    width: 100%;
    
    background-color: #fdfdfd;
}

.form-container.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.contact-form h2.section-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #3E0976;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 16px;
        box-sizing: border-box;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #3E0976;
            outline: none;
        }

button[type="submit"] {
    background-color: #3E0976;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

    button[type="submit"]:hover {
        background-color: #520fa8;
    }

/* Feedback Message Styling */
#feedbackMessage {
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    color: green;
    font-size: 16px;
}


/* === FOOTER === */
footer {
    width: 100%;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
    color: #222;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-address {
    background-color: #3E0976;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 15px 30px;
    gap: 40px;
    overflow-x: auto;
    background-color: #fff;
}

.footer-banner {
    width: 100%;
    margin: 0;
    padding: 0;
}

    .footer-banner img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        max-height: 300px;
        border-top: 4px solid #800000;
    }

.footer-copyright {
    background-color: #3E0976;
    color: white;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 0 0 20px 20px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
    }

    .coming-soon-section {
        flex-direction: column;
    }

    .coming-soon-image, .coming-soon-text {
        flex: 1 1 100%;
        text-align: center;
    }

    .grid-section {
        grid-template-columns: repeat(1, 1fr);
    }
}
.page-content {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}
