/*
Theme Name: Ambient OBX
Author: S28
Description: A custom ambient music theme designed for the coast.
Version: 1.5
Text Domain: ambient-obx
*/

/* --- 1. GLOBAL BASE & TYPOGRAPHY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    font-size: 16px; /* Restores the base text size */
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 2. HEADER & HERO SECTION --- */
.hero-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: 
        linear-gradient(to bottom, rgba(15, 20, 40, 0.8) 0%, rgba(15, 20, 40, 0.2) 100%),
        url('http://ambientobx.com/wp-content/uploads/2026/03/PXL_20231224_174325196-scaled.jpg') !important;
    background-size: cover;
    background-position: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.logo-container img.custom-logo {
    max-width: 250px;
    height: auto;
    display: block;
}

/* Fixes the "hosed" header navigation */
.main-nav ul {
    display: flex !important; /* Forces horizontal row */
    list-style: none !important;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.main-nav a:hover { color: #8ab4f8; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-listen {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

/* --- 3. ONE-PAGER CONTENT --- */
.content-section {
    padding: 120px 20px;
    text-align: center;
}

.dark-bg { background-color: #0d1117; }

.container { max-width: 900px; margin: 0 auto; }

.section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #8ab4f8;
    margin-bottom: 50px;
}

/* --- 4. THE FOOTER (FIXED) --- */
.site-footer {
    background-color: #05070a;
    color: #c0c8d0;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
    position: relative;
    clear: both;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Fixed the horizontal footer menu */
.footer-menu-horizontal {
    display: flex !important;
    justify-content: center;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
    gap: 30px;
}

.footer-menu-horizontal a {
    text-decoration: none;
    color: #c0c8d0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.footer-logo {
    color: #ffffff;
    font-weight: 300;
    font-size: 26px;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.footer-logo span { font-weight: 600; color: #8ab4f8; }

.copyright {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 10px;
    opacity: 0.4;
}

/* --- 5. FLOATING NAVIGATION --- */
.floating-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.floating-menu {
    display: flex;
    list-style: none !important;
    gap: 25px;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
}

.floating-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* --- 6. RESPONSIVE --- */
html { scroll-behavior: smooth; }

@media (max-width: 900px) {
    header { padding: 20px 30px; }
    .main-nav { display: none; }
}