﻿/* static/css/style.css */

/* ==========================================================================
   General Reset
   ========================================================================== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #ffffff;
}

/* ==========================================================================
   Navigation (All Navbars)
   ========================================================================== */

/* ==========================================================================
   Navigation (All Navbars)
   ========================================================================== */

/* Wrapper to stack navbars with zero gap */
.navbar-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 0 !important;
}

/* Remove any container padding/margin within navbars */
.navbar-wrapper .container-fluid {
  margin: 0 !important;
  padding: 0 !important;
}


/* Global reset for navbars: no extra margins and uniform padding */
.top-nav,
.store-nav,
.employee-nav {
  position: relative;
  margin: 0 !important;
  padding: 0.0rem 0rem !important;
  width: 100%;
}

/* Remove any gap between stacked navbars */
.top-nav + .store-nav,
.store-nav + .employee-nav {
  margin-top: 0 !important;
}

/* Top Navigation specific */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #5525ff;
  backdrop-filter: blur(8px);
  z-index: 10;
}

/* Store Navbar specific */
.store-nav {
  background-color: #b81818;
  border-bottom: none;
}

/* Employee Navbar specific */
.employee-nav {
  background-color: #B22222;
  border-bottom: none;
}



/* Wrapper to stack navbars with zero gap */
.navbar-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Ensure no margins or padding on direct navbar children */
.navbar-wrapper > * {
    margin: 0 !important;
    padding: 0 !important;
}

/* Top Navigation (fixed header) */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #ffffff;
    backdrop-filter: blur(8px);
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    margin-bottom: 0 !important;
}

.nav-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    flex: 1;
}

.nav-logo {
    height: 40px;
    border-radius: 4px;
    padding: 5px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
    color: inherit;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #3a3a3a;
}

.nav-spacer {
    flex: 1;
}

/* Employee/Admin Navbar */
.employee-nav {
    width: 100%;
    background: #f8f9fa;
    border-bottom: 0px solid #dddddd;
    padding: 0.0rem 0;
    margin: 0;
}

.employee-nav .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin: 0;
    padding: 0;
}

.employee-nav .nav-link {
    color: #000 !important;
    padding: 10px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.employee-nav .nav-link:hover {
    color: #00060f !important;
}

/* Store Section Navbar */
.store-nav {
    width: 100%;
    background: #ffffff;
    border-bottom: 0px solid #dddddd;
    padding: 0.0rem 0;
    margin: 0;
}

.store-nav .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: px;
    margin: 0;
    padding: 0;
}

.store-nav .nav-link {
    color: #000 !important;
    padding: 8px 12px;
    font-size: 1rem;
    text-transform: uppercase;
}

.store-nav .nav-link:hover {
    color: #000000 !important;
}

.store-nav .navbar-text {
    color: #6c757d !important;
    font-size: 0.875rem;
    margin-right: auto;
    padding-left: 1rem;
}

/* Reset any gap on stacked navbars */
.navbar + .navbar {
    margin-top: 0 !important;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.content {
    margin: 60px auto 40px;
    max-width: 800px;
    text-align: center;
    color: #000;
    background: rgba(255, 255, 255, 0.089);
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Gallery and Slideshow
   ========================================================================== */
.gallery-frame {
    margin-top: 60px;
    padding: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.slideshow {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
}

.slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    border-radius: 30px;
}

.slideshow img.active {
    opacity: 1;
}

.fullscreen-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================================
   Headings and Links
   ========================================================================== */
.tagline {
    margin-top: 10px;
    font-size: 24px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-link {
    display: block;
    margin-top: 15px;
    font-size: 18px;
    color: #000;
    text-decoration: underline;
}

.project-link:hover {
    color: #007066;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #f2f2f2;
    padding: 20px 40px;
    text-align: center;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #dddddd;
}

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

.footer-links {
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links li a {
    color: #333;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #00bbaa;
}

.scroll-down-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-down-bar:hover {
    background: rgba(0, 0, 0, 0.5);
}

.chevron-icon {
    height: 16px;
    width: auto;
    filter: invert(100%);
}

/* ==========================================================================
   Legal Content
   ========================================================================== */
.legal-content {
    max-width: 800px;
    margin: 100px auto 60px;
    padding: 0 20px;
    color: #333;
    font-size: 16px;
}

