/* ===================== GLOBAL RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    color: #333;
    background: #f9f9f9;
}

.container {
    width: 90%;
    margin: auto;
}

/* ===================== HEADER ===================== */
.header {
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo-area img {
        width: 70px;
    }

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

    nav a:hover {
        color: #d63384;
    }

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/271618/pexels-photo-271618.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        margin-top: 10px;
    }

/* ===================== SECTION ===================== */
.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
}

/* About / Contact text */
.section h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #d63384;
}

.section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Lists */
.section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

    .section ul li {
        margin-bottom: 8px;
    }

/* ===================== CONTACT FORM ===================== */
#pnlContactForm {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    /* Form Inputs */
    #pnlContactForm .form-control {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 6px;
        border: 1px solid #ddd;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }

        #pnlContactForm .form-control:focus {
            outline: none;
            border-color: #d63384;
        }

    /* DropDownList arrow fix */
    #pnlContactForm select.form-control {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: #fff url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
        background-size: 12px;
    }

    /* ===================== SUBMIT BUTTON ===================== */
    #pnlContactForm .btn-primary,
    #pnlContactForm input[type="submit"],
    #pnlContactForm button {
        width: 160px;
        padding: 12px;
        margin: 0 auto;
        display: block;
        background: #d63384;
        color: #fff;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        transition: 0.3s;
    }

        #pnlContactForm .btn-primary:hover,
        #pnlContactForm input[type="submit"]:hover,
        #pnlContactForm button:hover {
            background: #ff4da6;
        }

    /* Validator Styling */
    #pnlContactForm .aspNet-RequiredFieldValidator,
    #pnlContactForm .aspNet-RegularExpressionValidator {
        color: red;
        font-size: 13px;
        display: block;
        margin-top: -15px;
        margin-bottom: 15px;
    }

/* ===================== FOOTER ===================== */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-box {
    flex: 1;
    min-width: 250px;
}

    .footer-box h3 {
        margin-bottom: 15px;
        color: #ff4da6;
        font-size: 18px;
        border-bottom: 2px solid #ff4da6;
        display: inline-block;
        padding-bottom: 5px;
    }

    .footer-box p {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-box ul {
        list-style: none;
    }

        .footer-box ul li {
            margin-bottom: 10px;
        }

            .footer-box ul li a {
                text-decoration: none;
                color: #ccc;
                font-size: 14px;
            }

                .footer-box ul li a:hover {
                    color: #ff4da6;
                }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media(max-width:768px) {

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 220px;
        display: none;
    }

        nav a {
            display: block;
            padding: 15px;
        }

        nav.show {
            display: flex;
        }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 26px;
    }

    #pnlContactForm {
        padding: 25px;
    }

        #pnlContactForm .btn-primary,
        #pnlContactForm input[type="submit"],
        #pnlContactForm button {
            width: 100%;
        }

    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
