/* ==========================================================================
   Sleepy Hollow Self Storage - Main Stylesheet
   ========================================================================== */

:root {
    --orange: #F47B33;
    --orange-dark: #d96a2a;
    --red: #FF0000;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #f7f7f7;
    --gray: #666666;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset & Base */
* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--gray-light);
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.8;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

img { max-width: 100%; height: auto; }

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
}

.top-bar a:hover { color: var(--orange); }

.top-bar-phone a {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.top-bar-phone i { margin-right: 5px; }

.top-bar-hours {
    color: #ccc;
    font-size: 13px;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #333;
    margin-left: 5px;
    font-size: 13px;
    transition: background 0.3s;
}

.top-bar-social a:hover { background: var(--orange); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.main-nav {
    background-color: var(--black) !important;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.main-nav .navbar-brand img { max-height: 50px; }

.main-nav .nav-link {
    color: var(--white) !important;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 15px !important;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--orange) !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

/* Mobile Phone Bar */
.mobile-phone-bar {
    background-color: var(--orange);
    text-align: center;
    padding: 10px;
}

.mobile-phone-bar a {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background: url('/images/hero-bg.jpg') center center / cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 12px;
}

.hero-content .hero-subtitle {
    font-size: 24px;
    font-style: italic;
    font-family: var(--font-secondary);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section-dark {
    background-color: var(--black);
    color: var(--white);
    padding: 70px 0;
    border-bottom: 4px solid var(--orange);
}

.section-white {
    background-color: var(--white);
    padding: 70px 0;
    border-bottom: 3px solid #e0e0e0;
}

.section-gray {
    background-color: var(--gray-light);
    padding: 70px 0;
    border-bottom: 3px solid #ddd;
}

.section-orange {
    background-color: var(--orange);
    color: var(--white);
    padding: 70px 0;
    border-bottom: 4px solid var(--orange-dark);
}

/* Storage For Section */
.storage-for {
    text-align: center;
}

.storage-for h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: var(--orange);
}

.storage-for .storage-types {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.storage-for .storage-cta {
    font-size: 16px;
    color: #ccc;
    text-transform: uppercase;
    margin-top: 12px;
}

/* Reasons Section */
.reasons-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--orange);
    font-size: 32px;
}

.reasons-section .reason-list {
    list-style: none;
    padding: 0;
}

.reasons-section .reason-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid #eee;
}

.reasons-section .reason-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* About Section */
.about-section h2 {
    color: var(--orange);
    font-size: 32px;
    margin-bottom: 25px;
}

.about-section .content-block {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.about-section .content-block:last-child {
    border-bottom: none;
}

.about-section .content-block h3 {
    color: var(--orange);
    font-size: 24px;
    margin: 20px 0 15px;
}

.about-section .content-block img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Form Section
   ========================================================================== */
.form-section {
    background-color: var(--white);
    padding: 60px 0;
}

.form-section .form-advisor {
    text-align: right;
}

.form-section .form-advisor img {
    max-height: 450px;
    width: auto;
}

.form-section .form-wrapper {
    background: var(--orange);
    border-radius: 0;
    padding: 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    max-width: 100%;
    margin: 0;
}

.form-section .form-wrapper h2 {
    text-align: center;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin: 0;
    padding: 18px 30px;
    background: var(--black);
}

.form-section .form-wrapper form {
    padding: 25px 30px 30px;
}

.form-section .form-wrapper .form-label {
    color: var(--white);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 5px;
}

.form-section .form-control,
.form-section .form-select {
    border: none;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 16px;
    margin-bottom: 5px;
    transition: box-shadow 0.3s;
}

.form-section .form-control:focus,
.form-section .form-select:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
}

.form-section .btn-hold-room {
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 0;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.form-section .btn-hold-room:hover {
    background: #333;
}

.btn-orange {
    background-color: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
    cursor: pointer;
}

.btn-orange:hover {
    background-color: var(--orange-dark);
    color: var(--white);
}

.btn-orange-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-orange-outline:hover {
    background-color: var(--orange);
    color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* ==========================================================================
   Gold Key Section
   ========================================================================== */
.gold-key-section {
    background-color: var(--orange);
    color: var(--white);
    padding: 70px 0;
    border-bottom: 4px solid var(--orange-dark);
}

.gold-key-section h3 {
    font-size: 30px;
    margin-bottom: 18px;
}

.gold-key-section img {
    max-width: 200px;
}

/* ==========================================================================
   Free Pickup Section
   ========================================================================== */
.pickup-section {
    background-color: var(--black);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    border-bottom: 4px solid var(--orange);
}

.pickup-section img {
    max-width: 350px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pickup-section h2 {
    color: var(--orange);
    font-size: 32px;
    margin-bottom: 18px;
}

.pickup-section .phone-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background-color: var(--black);
    color: var(--white);
    padding: 70px 0;
    border-bottom: 4px solid var(--orange);
}

.cta-section h2 {
    font-size: 34px;
    text-transform: uppercase;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    font-size: 15px;
}

.site-footer h5 {
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 18px;
}

.site-footer a {
    color: var(--orange);
}

.site-footer a:hover { color: var(--white); }

.footer-badge { opacity: 0.9; }

.footer-bottom {
    background-color: #111;
    border-top: 1px solid #333;
    font-size: 13px;
}

.footer-bottom a {
    color: #ccc;
}

.footer-bottom a:hover { color: var(--orange); }

.footer-links li { font-size: 12px; }

.footer-links li + li::before {
    content: '|';
    margin-right: 8px;
    color: #555;
}

/* ==========================================================================
   Back to Top
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: background 0.3s;
}

.back-to-top:hover {
    background: var(--orange-dark);
    color: var(--white);
}

/* ==========================================================================
   Page Headers (Subpages)
   ========================================================================== */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/hero-bg.jpg') center center / cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 44px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
}

.page-header .breadcrumb-item a { color: var(--orange); }
.page-header .breadcrumb-item.active { color: #ccc; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: #ccc; }

/* ==========================================================================
   Content Pages
   ========================================================================== */
.page-content {
    padding: 70px 0;
    background: var(--white);
}

.page-content h2 {
    color: var(--orange);
    font-size: 30px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
}

.page-content h3 {
    color: var(--black);
    font-size: 24px;
    margin: 35px 0 18px;
}

.page-content p { margin-bottom: 1.2em; }

.page-content img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 15px 0;
}

/* Contact Page */
.contact-info-card {
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
}

.contact-info-card h3 { color: var(--orange); }
.contact-info-card a { color: var(--orange); }
.contact-info-card i { color: var(--orange); margin-right: 10px; }

/* Lightbox Trigger */
.lightbox-trigger img {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lightbox-trigger img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Sitemap Page */
.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.sitemap-list li a {
    font-size: 16px;
    font-weight: 500;
}

.sitemap-list li a i {
    margin-right: 10px;
    color: var(--orange);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 32px; }
    .hero-content .hero-subtitle { font-size: 18px; }
    .hero-section { min-height: 350px; }
    .main-nav .nav-link { padding: 8px 15px !important; }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 26px; }
    .hero-section { min-height: 300px; }
    .form-section .form-wrapper { margin: 0 15px; }
    .form-section .form-wrapper form { padding: 20px; }
    .storage-for .storage-types { font-size: 16px; }
    .gold-key-section { text-align: center; }
    .pickup-section img { max-width: 250px; }
    .page-header { padding: 50px 0; }
    .page-header h1 { font-size: 28px; }
    .footer-links li { display: block; margin-bottom: 5px; }
    .footer-links li + li::before { display: none; }
}

@media (max-width: 575px) {
    .hero-content h1 { font-size: 22px; }
    .top-bar { font-size: 13px; }
    .cta-section h2 { font-size: 24px; }
}
