/*
Theme Name: SmartLink Basics Theme
Theme URI: https://smartlinkbasics.com/
Author: SmartLink Basics
Description: A WordPress theme for custom applications with CORS support
Version: 1.0.2
License: GPL v2 or later
Text Domain: blank-theme
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================
   STICKY FOOTER LAYOUT
   Ensures footer stays at bottom of viewport
   when page content is shorter than screen
   ========================================== */

html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* Main content grows to fill available space */
.container,
main,
article,
.site-content,
.page-content,
.entry-content {
    flex: 1 0 auto;
}

/* Footer stays at bottom */
footer,
.btghf-footer {
    flex-shrink: 0;
    margin-top: auto;
    width: 100%;
}

/* Header doesn't shrink */
header,
.btghf-header {
    flex-shrink: 0;
}

/* ==========================================
   FULL WIDTH CONTAINER
   ========================================== */

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* Ensure images don't break layout */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   WORDPRESS ADMIN BAR ADJUSTMENT
   ========================================== */

body.admin-bar {
    min-height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        min-height: calc(100vh - 46px);
    }
}