/* SpiritCMS Main Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

html {
    background: var(--theme-gradient-overlay, #2c3e50);
    overscroll-behavior-y: none;
}

body {
    overscroll-behavior-y: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--theme-color, #6366f1) 0%, var(--theme-color-hover, #4f46e5) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10003;
    padding: 0;
}

body.has-fixed-header {
    padding-top: 70px;
}

/* Header text colors - white for visibility on theme color background */
header .logo-link,
header .site-title {
    color: white;
}

header .nav-menu li a {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

header .nav-user-menu .user-menu-toggle {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

header .nav-menu li a:hover {
    color: #fff;
}

header .nav-menu li a::after {
    background: #fff;
}

header .mobile-menu-toggle span {
    background: white;
}

/* Homepage Header - Transparent with gradient overlay */
header.homepage-header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10003; /* High z-index to be above flipper (z-index: 5) */
    transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

header.homepage-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, var(--theme-gradient-start, rgba(0,0,0,0.15)) 0%, var(--theme-gradient-mid, rgba(0,0,0,0.08)) 30%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

header.homepage-header .logo-link,
header.homepage-header .site-title {
    color: white;
}

header.homepage-header .nav-menu li a {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

header.homepage-header .nav-user-menu .user-menu-toggle {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

header.homepage-header .nav-menu li a:hover {
    color: #fff;
}

header.homepage-header .nav-menu li a::after {
    background: #fff;
}

header.homepage-header .mobile-menu-toggle span {
    background: white;
}

header.homepage-header.is-scrolled {
    background: linear-gradient(
        180deg,
        rgba(var(--theme-color-rgb), 0.92) 0%,
        var(--theme-gradient-overlay, rgba(36, 46, 58, 0.84)) 100%
    );
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10002; /* Ensure nav container is above flipper */
    align-items: center;
    height: 70px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
}

.site-logo {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

/* Homepage logo reveal on load: wipe-in + subtle scale, then optional glossy sweep */
@keyframes logoReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        transform: scale(0.96);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: scale(1);
    }
}

@keyframes logoShine {
    0% {
        transform: translateX(-220%);
    }
    100% {
        transform: translateX(220%);
    }
}

@keyframes harborTaglineFadeIn {
    0% {
        opacity: 0;
        transform: translateY(4px);
    }
    100% {
        opacity: 0.92;
        transform: translateY(0);
    }
}

.homepage-brand-group .logo-link {
    position: relative;
    overflow: visible;
}

.homepage-brand-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    padding-right: 0.35rem;
}

.homepage-logo-tagline {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 0.28rem;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    opacity: 0.92;
    margin-left: 0.55rem;
    animation: harborTaglineFadeIn 1.2s ease-out 0.55s both;
}

.homepage-logo-tagline .intro-main {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
}

.homepage-logo-tagline .intro-of {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    margin: 0 0.04rem;
    text-transform: none;
}

.homepage-brand-group .site-logo {
    animation: logoReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.homepage-brand-group::after {
    content: '';
    position: absolute;
    inset: -35%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 60%,
        transparent 100%
    );
    animation: logoShine 1s ease-in-out 1.15s both;
    pointer-events: none;
}

@media (max-width: 991px) {
    .homepage-logo-tagline {
        display: none;
    }

    .homepage-brand-group {
        overflow: visible;
    }

    /* No glisten/shine on logo when menu is collapsed — avoids artifact on header */
    .homepage-brand-group::after {
        display: none;
    }
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s;
}

.nav-menu li a:hover {
    color: #3498db;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* User Menu Dropdown */
.nav-user-menu {
    position: relative;
    z-index: 10001; /* Ensure parent has high z-index for dropdown to work */
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

/* Match other nav menu items */
.nav-user-menu .user-menu-toggle::after {
    display: none; /* Don't show underline on user menu toggle */
}

.nav-user-menu:hover .user-menu-toggle {
    color: #3498db;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-user-menu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    display: block;
    position: absolute;
    top: calc(100% - 1px); /* Overlap by 1px to eliminate gap */
    right: 0;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    min-width: 150px;
    padding: 8px 0;
    list-style: none;
    z-index: 10000; /* Very high z-index to ensure it's above flipper and all other content */
    margin-top: 0;
    padding-top: 4px; /* Add top padding for visual spacing but keep hover connected */
    /* Windows XP style slide-out animation for desktop */
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden;
}

/* Desktop dropdown - ensure dark text on white background (when not in mobile menu) */
@media (min-width: 769px) {
    .user-dropdown {
        background: #ffffff !important;
    }
    
    .user-dropdown li a {
        color: #2c3e50 !important;
        text-shadow: none !important;
    }
    
    .user-dropdown li a:hover {
        background: #f5f5f5 !important;
        color: #2c3e50 !important;
        text-shadow: none !important;
    }
    
    header.homepage-header .user-dropdown {
        background: #ffffff !important;
    }
    
    header.homepage-header .user-dropdown li a {
        color: #2c3e50 !important;
        text-shadow: none !important;
    }
    
    header.homepage-header .user-dropdown li a:hover {
        background: #f5f5f5 !important;
        color: #2c3e50 !important;
        text-shadow: none !important;
    }
}

/* Show dropdown on hover of parent, and keep it open when hovering over dropdown - Windows XP slide-out */
.nav-user-menu:hover .user-dropdown {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.user-dropdown li {
    margin: 0;
}

.user-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #2c3e50 !important;
    text-decoration: none;
    transition: background 0.2s;
    font-weight: 500;
    text-shadow: none !important;
}

.user-dropdown li a:hover {
    background: #f5f5f5;
    color: #2c3e50 !important;
    text-shadow: none !important;
}

.user-dropdown li a::after {
    display: none;
}

/* Ensure dropdown is readable even on homepage header - desktop only */
header.homepage-header .user-dropdown {
    background: #ffffff !important;
}

header.homepage-header .user-dropdown li a {
    color: #2c3e50 !important;
    text-shadow: none !important;
}

header.homepage-header .user-dropdown li a:hover {
    background: #f5f5f5 !important;
    color: #2c3e50 !important;
    text-shadow: none !important;
}

header.homepage-header .user-dropdown li hr {
    border-top: 1px solid #e5e7eb;
}

/* Register button styling - uses theme color */
.nav-menu li a.btn-nav {
    background: var(--theme-color, #6366f1);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    margin-left: 12px;
    transition: background 0.2s;
}

.nav-menu li a.btn-nav:hover {
    background: var(--theme-color-hover, #4f46e5);
}

.nav-menu li a.btn-nav::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Keep homepage header transparent on mobile too */
    header.homepage-header {
        position: absolute;
        background: transparent;
        box-shadow: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--theme-color, #6366f1) 0%, var(--theme-color-hover, #4f46e5) 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1002;
        border-radius: 0 12px 12px 0; /* Round right top and bottom corners */
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Mobile User Menu - Expand inline instead of popup */
    .nav-menu .nav-user-menu {
        width: 100%;
        position: relative;
    }
    
    .nav-menu .user-menu-toggle {
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        padding: 1rem 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu .user-menu-toggle .dropdown-arrow {
        transition: transform 0.3s ease;
        font-size: 12px;
    }
    
    .nav-menu .nav-user-menu.active .user-menu-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-menu .user-dropdown {
        position: static !important;
        display: block;
        width: 100%;
        background: #ffffff !important; /* White background like desktop */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* Shadow behind submenu */
        border-radius: 6px;
        margin-top: 0.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        /* Windows XP style slide-out for mobile - slide from right like desktop */
        opacity: 0;
        transform: translateX(20px);
        transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, transform 0.3s ease, margin 0.3s ease;
        pointer-events: none;
        visibility: hidden;
    }
    
    /* Show on hover OR active (for mobile tap) */
    .nav-menu .nav-user-menu:hover .user-dropdown,
    .nav-menu .nav-user-menu.active .user-dropdown {
        max-height: 500px;
        padding: 0.5rem 0;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        visibility: visible;
    }
    
    .nav-menu .user-dropdown li {
        border-bottom: 1px solid #e5e7eb; /* Light gray border like desktop */
        margin: 0;
    }
    
    .nav-menu .user-dropdown li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .user-dropdown li hr {
        border-top: 1px solid #e5e7eb; /* Light gray border like desktop */
        margin: 0.5rem 1rem;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1.1rem;
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        font-weight: 500;
    }
    
    header.homepage-header .nav-menu li a {
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu li a:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li a.btn-nav {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu li a.btn-nav:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Mobile user dropdown - MUST come after .nav-menu li a to override white text */
    .nav-menu .user-dropdown {
        background: #ffffff !important;
    }
    
    header.homepage-header .nav-menu .user-dropdown {
        background: #ffffff !important;
    }
    
    /* Mobile user dropdown links - override white text with dark text */
    .nav-menu .nav-user-menu .user-dropdown li a,
    .nav-menu .user-dropdown li a {
        color: #2c3e50 !important; /* Dark text like desktop */
        text-shadow: none !important;
        padding: 0.75rem 1rem 0.75rem 2rem;
        font-weight: 500;
        font-size: 1rem;
        letter-spacing: 0.01em;
        background: transparent !important;
    }
    
    header.homepage-header .nav-menu .nav-user-menu .user-dropdown li a,
    header.homepage-header .nav-menu .user-dropdown li a {
        color: #2c3e50 !important;
        text-shadow: none !important;
    }
    
    .nav-menu .nav-user-menu .user-dropdown li a:hover,
    .nav-menu .user-dropdown li a:hover {
        background: #f5f5f5 !important; /* Light gray hover like desktop */
        color: #2c3e50 !important;
        text-shadow: none !important;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    header.homepage-header .nav-menu li a:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .site-logo {
        max-height: 30px;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Container for non-full-width content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main .container {
    padding: 2rem 0;
}

/* Flash Messages */
/* Flash Messages - Positioned below header */
.flash-messages-container {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 999;
    margin-top: 0;
}

header.homepage-header ~ .flash-messages-container {
    position: relative;
    margin-top: 0;
}

.flash-messages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
}

.flash {
    padding: 14px 20px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.flash:last-child {
    margin-bottom: 0;
}

.flash-close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    padding: 0;
    margin-left: 16px;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: opacity 0.2s, background 0.2s;
}

.flash-close:hover {
    opacity: 1;
    background: rgba(0,0,0,0.1);
}

.flash-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.flash-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.flash-warning {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.hero {
    text-align: center;
    padding: 3rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.25rem;
    color: #666;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-card h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Welcome Sections */
.welcome-section,
.services-section,
.upcoming-events,
.connect-section,
.about-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.welcome-section h2,
.services-section h2,
.upcoming-events h2,
.connect-section h2,
.about-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-time-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-time-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

/* Buttons - Standardized across site */
.btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    min-width: 100px;
    box-sizing: border-box;
    height: 40px; /* Fixed height for consistency */
    line-height: 1;
    vertical-align: middle;
}

/* Ensure buttons and anchor buttons render exactly the same */
button.btn,
a.btn,
input.btn[type="button"],
input.btn[type="submit"] {
    height: 40px !important;
    line-height: 1 !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    border: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.btn-primary {
    background: var(--theme-color, #6366f1);
    color: #fff;
    margin-top: 0;
}

.btn-primary:hover {
    background: var(--theme-color-hover, #4f46e5);
}

.btn-secondary {
    background: #6b7280;
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-success {
    background: #10b981;
    color: #fff;
}

.btn-success:hover {
    background: #059669;
}

.btn-danger {
    background: #ef4444;
    color: #fff;
}

.btn-danger:hover {
    background: #dc2626;
}

/* Full-width button for forms */
.btn-full {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    min-width: auto;
}

/* Small button variant */
.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    min-width: auto;
}

/* Button links should look like buttons */
a.btn {
    text-decoration: none;
}

/* Dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3498db;
    margin-top: 0.5rem;
}

.quick-links {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.quick-links ul {
    list-style: none;
    margin-top: 1rem;
}

.quick-links ul li {
    margin-bottom: 0.5rem;
}

.quick-links ul li a {
    color: #3498db;
    text-decoration: none;
}

.quick-links ul li a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(
        180deg,
        rgba(var(--theme-color-rgb), 0.9) 0%,
        var(--theme-gradient-overlay, rgba(36, 46, 58, 0.86)) 100%
    );
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

footer .footer-info {
    margin-bottom: 1rem;
}

footer .footer-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
}

footer .footer-address,
footer .footer-phone {
    margin: 0.25rem 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

footer .footer-phone a {
    color: white;
    text-decoration: none;
}

footer .footer-phone a:hover {
    text-decoration: underline;
}

footer .footer-copy {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.8;
}
