/* * DJ Mike Walsh - Mobile Specific Styles (mobile.css)
 */

@import url("https://fonts.googleapis.com/css?family=Lora:400,700|Open+Sans:400,600,700&display=swap");
@media only screen and (max-width: 991px) {
/* --- Core Reset --- */
html, body {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* --- Typography (Mobile Optimized) --- */
h1 {
    font-family: "Lora", serif;
    font-size: 2.8rem !important; /* Overriding the 12em/7rem desktop sizes */
    line-height: 1.2 !important;
    font-weight: 700;
    word-wrap: break-word;
    margin-bottom: 1rem;
    text-align: center;
}

h2 { font-size: 1.8rem; line-height: 1.3; }
h3 { font-size: 1.5rem; }

p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* --- Navigation & Header --- */
.navbar-custom {
    height: auto;
    padding: 10px 0;
    background-color: transparent; /* More solid for mobile legibility */
    box-shadow: none;
    backdrop-filter: none;
}

.logo-box {
    position: relative;
    width: 120px !important;
    top: 0;
    /* margin: 0 auto; */
    float: left;
}

.navbar-collapse {
    background: #ffffff;
    margin-top: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.navbar-nav .nav-item {
    border-bottom: 1px solid #eee;
    width: 100%;
}

.navbar-nav .nav-link {
    color: #051441 !important;
    padding: 12px !important;
    font-size: 1.1rem;
    display: block;
}

/* --- Hero & Banners --- */
.hero {
    padding: 100px 15px 60px;
    min-height: auto !important;
    background-attachment: scroll; /* Better performance on mobile than fixed */
}

.hero h1 {
    text-align: right !important;
    padding: 0;
    width: 80%;
    float: right;
}

.banner-main:before {
    height: 100%; /* Ensure no gaps */
}

.py-7 {
    padding: 60px 0px 30px 0px;
}

/* --- Layout & Sections --- */
.section {
    padding: 40px 15px;
}

.feature-home .col-lg-8 {
    text-align: center;
    margin-bottom: 30px;
}

.container {
    padding-left: 20px;
    padding-right: 20px;
}

/* --- Forms & UI --- */
.form-control {
    height: 50px;
    font-size: 16px; /* Prevents iOS zoom on focus */
}

.eventform {
    background-image: none; /* Removes distracting background image on small screens */
    padding: 30px 15px;
}

.eventform h2 {
    font-size: 2rem;
}

.btn-border-tp {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
    margin-top: 10px;
}

/* --- Footer --- */
.footer.bg {
    text-align: center;
    padding: 40px 0;
}

.footer .text-lg-right {
    text-align: center !important;
    margin-top: 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

/* --- Utilities --- */
.img-fluid {
    height: auto;
    max-width: 100%;
}

.scroll-to-top {
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 15px;
}

.carousel-control-next, 
.carousel-control-prev,
.carousel-indicators {
    display: none !important;
    }
    /* This forces the hamburger icon to be white */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Optional: Add a border to the button so you can see the tap area */
.navbar-toggler {border-color: rgba(255,255,255,0.5) !important;}

}

@media only screen and (max-width: 600px) {

.navbar-custom {height: 2px;padding: 0;}
.logo-box {top: 50;width: 85px !important;}
.navbar-custom::before { display:none;}
.navbar-collapse {background: #ffffff;margin-top: 100px;}
.navbar-nav .nav-link.active {color: #333 !important;}
}





















