* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('../images/dab-tlo.jpg') repeat;
}

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

/* Header */
.header {
    background: #F5F6E4;
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #5a7a3d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation */
.nav {
    background: #2c5f2d;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: #97bc62;
}

/* Main */
.main {
    padding: 40px 0;
    min-height: calc(100vh - 300px);
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page h2 {
    color: #2c5f2d;
    font-size: 2.5em;
    margin-bottom: 30px;
    border-bottom: 3px solid #97bc62;
    padding-bottom: 10px;
}

.content-box {
    background: #F5F6E4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
}

.content-box p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Attractions Submenu */
.attractions-submenu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.attraction-link {
    display: block;
    padding: 15px 30px;
    background: #2c5f2d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 500;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.attraction-link:hover {
    background: #97bc62;
}

/* Subpage styling */
.subpage .page-image {
    margin-bottom: 20px;
}

.back-button {
    display: inline-block;
    float: right;
    padding: 10px 20px;
    background: #2c5f2d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
    margin-bottom: 20px;
}

.back-button:hover {
    background: #97bc62;
}

/* Regulations */
.regulations h3 {
    color: #2c5f2d;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.regulations ol {
    margin-left: 20px;
}

.regulations li {
    margin-bottom: 15px;
    padding-left: 10px;
}

/* Contact */
.contact-info {
    text-align: center;
}

.contact-info h3 {
    color: #2c5f2d;
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact-info a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: #97bc62;
}

/* Map Placeholder */
.map-placeholder {
    background: #e0e0e0;
    padding: 100px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
    color: #666;
}

/* Footer */
.footer {
    background: #2c5f2d;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2em;
    }
    
    .tagline {
        font-size: 1em;
    }
    
    .menu {
        flex-direction: column;
    }
    
    .nav-link {
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .page h2 {
        font-size: 2em;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .map-placeholder {
        padding: 50px 20px;
    }
}
