﻿/* UnifiedResponsiveStyle.css */

/* Reset & Base Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #212529;
}

html, body {
    font-family: 'Arial', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Navbar */
.navbar {
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border-bottom: 1px solid #dee2e6;
}

.navbar-brand span {
    font-weight: bold;
    font-size: 1.25rem;
    color: #F1A034 !important;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: bold;
    transition: color 0.3s;
    color: #F1A034 !important;
}

    .navbar-nav .nav-link:hover {
        color: #0d6efd;
    }

/* Footer */
footer {
    background-color: #ffffff;
    color: #343a40;
    padding: 2rem 1rem;
    border-top: 1px solid #dee2e6;
}

    footer h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    footer p {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

.social-icons a {
    color: #343a40;
    transition: color 0.3s;
}

    .social-icons a:hover {
        color: #0d6efd;
    }

/* Buttons */
.btn-primary,
input[type="submit"],
button[type="submit"] {
    background-color: #F1A034 !important;
    border-color: #F1A034 !important;
    color: #fff;
    font-weight: bold;
}

    .btn-primary:hover,
    input[type="submit"]:hover,
    button[type="submit"]:hover {
        background-color: #d88f2d !important;
        border-color: #c87e24 !important;
    }

/* Section & Layout */
.body-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

section {
    margin-bottom: 2rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .navbar-brand span {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
    }

    footer h4 {
        font-size: 1rem;
    }

    footer p {
        font-size: 0.85rem;
    }

    .body-content {
        padding: 1rem;
    }
}

/* Utilities */
.text-md-end {
    text-align: right !important;
}

.text-md-start {
    text-align: left !important;
}

@media (max-width: 768px) {
    .text-md-end {
        text-align: center !important;
    }

    .text-md-start {
        text-align: center !important;
    }
}
