

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

main {
    flex: 1;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

header {
    background: #222;
    color: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.header-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-wrap {
    flex-shrink: 0;
    display: block;
}

.logo {
    height: 120px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.05);
}

.title-nav {
    display: flex;
    flex-direction: column;
}

.title-nav h1 {
    margin: 0;
    font-size: 1.8rem;
}

.title-nav nav {
    margin-top: 6px;
    padding: 4px 0;
    background: linear-gradient(to right, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border-radius: 6px;
    display: inline-block;
}

.title-nav nav a {
    margin-right: 1rem;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.title-nav nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.title-nav nav a.active {
    background-color: #fff;
    color: #222;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero {
    background: #f5f5f5;
    padding: 2rem 0;
    text-align: center;
}

.info {
    padding: 1.5rem 0;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


footer {
    background: #222;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: static !important;
}
