/* Global Styles */
body, html {
  height: 100%;
  font-family: "Lato", sans-serif;
  color: #f0f0f0;
  background-color: #2c2c2c;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}

/* Navigation */
.w3-top {
  transition: background-color 0.3s ease;
  z-index: 9999;
  overflow: visible;
}

.w3-bar {
    background-color: rgba(44, 44, 44, 0.9) !important;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #4a4a4a;
    overflow: visible;
}

.w3-dropdown-content {
    z-index: 10000;
    background-color: #3e3e3e !important;
    color: #fff !important;
}

.w3-dropdown-content .w3-button {
    background-color: transparent !important;
    color: #fff !important;
}

.w3-dropdown-content .w3-button:hover {
    background-color: #5d4037 !important;
    color: #fff !important;
}

.w3-bar .w3-button {
    color: #fff !important;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.w3-bar .w3-button:hover {
    background-color: #5d4037 !important; /* Dark wood tone */
    color: #fff !important;
}

/* Background Image */
.bgimg {
  background-position: center;
  background-size: cover;
  background-image: url('../pictures/20200825_173800.jpg');
  min-height: 100%;
  position: relative;
}

/* Header Text */
.w3-display-middle span {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.header-title {
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.header-subtitle {
    background-color: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 4px;
}

/* Sections */
.w3-container {
    padding: 64px 16px;
    background-color: #2c2c2c;
    color: #ddd;
}

.w3-content {
    max-width: 900px;
}

.w3-tag {
    background-color: #5d4037 !important; /* Wood tone */
    color: #fff !important;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    padding: 8px 16px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #3a3a3a;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #555;
    font-size: 1.1rem;
}

th {
    background-color: #5d4037;
    color: white;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
}

tr:hover {
    background-color: #444;
}

/* Images */
img {
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

img:hover {
    opacity: 1;
}

/* Footer */
footer {
    background-color: #1a1a1a !important;
    color: #888 !important;
    border-top: 1px solid #333;
}

footer a {
    color: #bcaaa4;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Utility */
.text-gold {
    color: #d4af37;
}

.section-divider {
    height: 2px;
    width: 100px;
    background-color: #5d4037;
    margin: 20px auto;
}

/* Responsive Adjustments */
@media screen and (max-width: 600px) {
    .header-title {
        font-size: 3rem;
    }
    
    .w3-tag {
        font-size: 1rem;
        padding: 4px 8px;
    }
    
    .w3-container {
        padding: 32px 16px;
    }
    
    .w3-bar .w3-button {
        padding: 8px 4px;
        font-size: 0.8rem;
    }
}

