/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    font-family: 'Roboto', sans-serif;

}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Global Styles */
body {
    /* background-color: white; */
    /* background-color: #F5F5F5; Light Grey or Tan */
    background-color: #dad7cd;
    font-size: 16px;
    line-height: 1.6;
    /* background-image: url('../IMAGES/BILD0039.JPG'); */
}

#wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #FAFAFA;
    border: 1px solid #E0E0E0;

}

#top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Change from center to flex-start */
    background-color: #F5F5F5;
    /* background-color: #EAEAEA; */
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding-left: 20px;
}

#logo img {
    width: 130px;
    height: 130px;
    margin-right: 20px;
}

#logo h1 {
    font-size: 3.5rem;
    color: #FF0000;
    margin: 0;
    font-weight: 700;
}

#social {
    display: flex;
    justify-content: right;
    align-items: right;
}

#social p,
#social a {
    font-size: 1rem;
    margin: 0 10px;
    color: #f4e1c1; /* Light Tan */
}

#social img {
    width: 24px;
    height: 24px;
}

#topnav {
    background-color: #0077B6;
    /* Deep Brown */
    padding: 0px;
    /* border-radius: 5px; */
    margin-top: 0px;
    margin-bottom: 0px;
}

#topnav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-around;
    border: 1px solid rgba(0, 0, 0, 0);
}

#topnav ul li {
    margin: 0px;
    position: relative;
    border: 0px;
}

#topnav ul li a {
    text-decoration: none;
    color: #FAFAFA;
    /* Light Tan */
    padding: 10px 20px;
    display: flex;
    /* Align icon and text */
    align-items: center;
    /* Center align icon and text */
    /* border-radius: 5px; */
    transition: background-color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0);
}

#topnav ul li a img,
#topnav ul li a i {
    margin-right: 10px;
    /* Space between icon and text */
    width: calc(0.7 * 2em);
    /* 3 times the width of the navbar */
    height: auto;
    /* Scale height automatically */
    color: white;
    /* Light Tan */
    /* filter: invert(88%) sepia(10%) saturate(0%) hue-rotate(180deg) brightness(95%) contrast(85%); */
    filter: brightness(0) invert(1);
}

#topnav ul li a:hover {
    background-color: #FF4B4B;
    /* Wood Brown */
    /* border: 1px solid #fff; */
}

#topnav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0077B6;
    /* Deep Brown */
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: 5px;
    z-index: 1000;
}

#topnav ul li ul li {
    width: 200px;
}

#topnav ul li ul li a {
    padding: 10px;
    display: block;
    color: #fff;
    text-decoration: none;
}

#topnav ul li ul li a:hover {
    /* background-color: #FF0000; */
}

/* Show dropdown on hover */
#topnav ul li:hover ul {
    /* display: block; */
    display: flex;
}

#content {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* color: #4a3312; Dark Brown for all content text */
    /* border: 1px black solid; */
}

#content h2,
#news-sidebar h2 {
    font-size: 2rem;
    color: black;
    /* Override heading color */
    text-align: center;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

#content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

#content img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

#footer {
    background-color: #0077B6;
    color: #fff;
    text-align: center;
    padding: 10px;
    /* border-radius: 5px; */
    margin-top: 0px;
}

#footer .social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

#footer .social-icons a {
    margin: 0 10px;
}

#footer .social-icons img {
    width: 24px;
    height: 24px;
}

/* Ensure all images in the Pictures section are consistent in size and responsive */
#pic {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* Adjust the gap as needed */
    text-align: center;
    margin: 20px 0;
}

#pic img {
    width: 100%;
    height: auto;
    max-width: 300px;
    /* Adjust the max-width as needed */
    display: block;
}

#pic .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#pic .gallery img {
    width: 300px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#pic .gallery img:hover {
    transform: scale(1.05);
}

a {
    color: #8b5e34;
    /* Wood Brown */
}

button {
    background-color: #5a3d1b;
    /* Dark Leather Brown */
    color: #fff3e3;
    /* Soft Cream */
}

button:hover {
    background-color: #b68d40;
    /* Deep Gold */
}

@media (max-width: 768px) {
    #logo h1 {
        font-size: 1.5rem;
    }

    #topnav ul {
        flex-direction: column;
        align-items: center;
    }

    #topnav ul li {
        width: 100%;
        text-align: center;
    }
    
    /* Improve dropdown navigation for mobile */
    #topnav ul li:hover ul {
        position: relative;
        flex-direction: column;
        width: 100%;
    }
    
    #topnav ul li ul li {
        width: 100%;
    }

    #content {
        padding: 10px;
    }

    #content h2 {
        font-size: 1.5rem;
    }
    
    /* Make gallery more responsive on mobile */
    #lightgallery,
    #lightgallery-youth,
    #lightgallery-indoor,
    #lightgallery-outdoor,
    #lightgallery-hunting {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
    }
}

#photo img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

/* Modern Design Updates */

/* 1. Modern Typography */
body {
    font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* 2. Modern Color Scheme */
:root {
    --primary: #0077B6;
    /* Current blue */
    --secondary: #FF4B4B;
    /* Modern red */
    --text: black;
    /* Dark gray for text */
    --background: #F8F9FA;
    /* Light gray background */
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* 3. Smooth Transitions */
#topnav ul li a {
    transition: all 0.3s ease;
}

/* 4. Modern Card Design */
#content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    margin: 10px;
    padding: 30px;
}

/* 5. Modern Navigation */
#topnav {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

#topnav ul li a {
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 500;
}

/* 6. Modern Images */
#pic img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#pic img:hover {
    transform: scale(1.02);
}

/* 7. Responsive Design Improvements */
@media (max-width: 768px) {
    #wrapper {
        padding: 10px;
    }

    #topnav ul li a {
        padding: 12px 20px;
    }

    #content {
        padding: 20px;
    }
}

/* 8. Modern Button Styles */
button,
input[type="submit"] {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

/* LightGallery Custom Styles */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}

.lg-outer .lg-toolbar {
    background-color: transparent;
}

.lg-outer .lg-toolbar .lg-close {
    font-size: 24px;
    color: #fff;
    margin-right: 10px;
}

.lg-sub-html {
    display: none !important;
}

#lightgallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

#lightgallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

#lightgallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#lightgallery a:hover img {
    transform: scale(1.05);
}

/* Remove all modal and old gallery styles */
.modal-gallery,
.modal-content,
.modal-close,
.lg-outer .lg-thumb-outer,
.lg-outer .lg-thumb,
.lg-components {
    display: none !important;
}

/* Header Social Icons */
.header-social {
    position: static;
    /* Remove absolute positioning */
    padding-right: 20px;
    padding-top: 10px;
    /* Add padding to align with top */
    display: flex;
    align-items: flex-start;
    /* Change from center to flex-start */
}

.header-social .social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    /* height: 100%; */
}

.header-social .social-icons img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.header-social .social-icons img:hover {
    transform: scale(1.1);
}

/* Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(250px, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    clear: both;
    /* Ensure it starts below the slideshow */
}

#content {
    min-width: 0;
    /* Prevents content from overflowing */
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    padding: 20px;
    box-sizing: border-box;
}

#news-sidebar {
    min-width: 250px;
    width: 100%;
    margin: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    padding: 20px;
    box-sizing: border-box;
}

/* News Sidebar */
#news-sidebar {
    width: 30%;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 0px;


}

.news-heading {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-icon {
    font-size: 1.2em;
}

.news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    color: #666;
    font-size: 0.9em;
    margin: 5px 0;
}

#news-sidebar h2 {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    #content,
    #news-sidebar {
        width: 100%;
        max-width: 100%;
    }

    #top {
        flex-direction: column;
        padding: 10px;
        align-items: center;
        /* Reset alignment for mobile */
    }

    #logo {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .header-social {
        padding-right: 0;
        justify-content: center;
        padding-top: 0;
        align-items: center;
    }
}

#photo {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    /* Add space between slideshow and content */
    position: relative;
    overflow: hidden;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Changed from 'top 75%' to 'center' */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Facebook container */
.social-container {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .social-container {
        float: none;
        width: 100%;
        /* height: 100%; */
    }

    #content {
        padding: 15px;
    }

    h2 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    .header-social {
        display: flex;
        justify-content: flex;
        margin-top: 10px;
        /* height: 100%; */
    }

    .header-social .social-icons {
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    nav ul {
        display: none;
        width: 100%;
    }

    nav.responsive ul {
        display: block;
    }

    nav li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .social-container {
        margin: 10px 0;
    }

    .header-social {
        flex-direction: column;
        align-items: center;
    }

    .header-social .social-icons {
        gap: 5px;
    }
}

/* Desktop styles */
@media screen and (min-width: 1024px) {
    .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    .social-container {
        width: 30%;
        /* Reduced from 45% */
        float: left;
        margin-bottom: 20px;
    }

    .header-social {
        margin-left: auto;
        padding: 10px 20px;
    }

    .header-social .social-icons {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .header-social .social-icons img {
        width: 32px;
        height: 32px;
        transition: transform 0.3s ease;
    }

    .header-social .social-icons img:hover {
        transform: scale(1.1);
    }
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    gap: 20px;
}

#content {
    flex: 1;
    /* This will allow content to take available space */
    min-width: 50%;
    /* Ensures content maintains a minimum width */
}

#news-sidebar {
    width: 35%;
    /* Fixed width for news sidebar */
}

/* Media query for smaller screens */
@media screen and (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }

    .social-container,
    #content,
    #news-sidebar {
        width: 100%;
    }
}

@media screen and (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        padding: 10px;
        display: flex;
        flex-direction: column;
        margin: 10px;
    }

    #content,
    #news-sidebar {
        min-width: 0;
        width: 100%;
        margin: 0 auto;
        max-width: 800px;
        /* Prevents content from becoming too wide */
        box-sizing: border-box;
    }

    #news-sidebar {
        margin-top: 20px;
    }
    
    /* Better control gallery layout on tablets */
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
}

@media screen and (max-width: 480px) {
    .content-wrapper {
        padding: 10px;
        margin: 0;
    }

    #content,
    #news-sidebar {
        padding: 15px;
        margin: 0 0 10px 0;
        border-radius: 8px;
    }
    
    /* Improved gallery layout for phones */
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .gallery img {
        height: 130px;
    }
    
    /* Better typography on small screens */
    #content h2,
    #news-sidebar h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    #content h3,
    #news-sidebar h3 {
        font-size: 1.2rem;
    }
    
    #content p,
    #news-sidebar p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Adjust wrapper and photo container */
    #wrapper {
        width: 100%;
        padding: 10px;
    }
    
    #photo {
        height: 180px;
    }
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    /* Changed from #fff to transparent */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.1);
    /* Semi-transparent white on hover */
}

.social-icons img {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 1024px) {
    #logo h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    #logo {
        padding-left: 10px;
        padding-right: 60px;
        /* Make room for social icons */
    }

    #logo h1 {
        font-size: 2rem;
    }

    #logo img {
        width: 100px;
        height: 100px;
        margin-right: 15px;
    }

    .header-social {
        top: 10px;
        right: 10px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    #logo {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    #logo img {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    #logo h1 {
        font-size: 1.5rem;
    }

    .header-social {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
    }

    .social-icons img {
        width: 22px;
        height: 22px;
    }
}


.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}


.executive-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.executive-title {
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.position-card {
    margin-bottom: 30px;
    padding: 15px;
    border-left: 4px solid #007bff;
    background-color: #f8f9fa;
}

.position-title {
    color: #007bff;
    margin-bottom: 5px;
}

.position-holder {
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}


.safety-guide {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.safety-guide h2 {
    color: #333;
    margin-bottom: 1.5em;
}

.safety-guide h3 {
    color: #0077B6;
    margin: 1.5em 0 1em;
}

.safety-guide h4 {
    color: #444;
    margin: 1.2em 0 0.8em;
}

.safety-subsection {
    margin-bottom: 2em;
}

.safety-guide ul {
    list-style: disc;
    margin-left: 2em;
    margin-bottom: 1em;
}

.safety-guide li {
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.safety-guide p {
    margin-bottom: 1em;
    line-height: 1.6;
}

section {
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 1px solid #eee;
}

/* Links Page Styles */
#links {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

#links h2 {
    color: #0077B6;
    margin-bottom: 2rem;
    text-align: center;
}

#links h3 {
    color: #333;
    margin: 2rem 0 1rem;
}

#links .link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

#links img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#links img:hover {
    transform: scale(1.05);
}

#links p {
    text-align: center;
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #links img {
        max-width: 250px;
    }
}

/* Fees Page Specific Styles */
.archery-info {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.main-title {
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.fees-table th,
.fees-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.fees-table th {
    background-color: #2c3e50;
    color: white;
}

.section-header {
    background-color: #f5f6fa;
}

.section-header td {
    padding: 10px;
    font-weight: bold;
}

/* Map Page Styles */
.section-title {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

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

.schedule-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-item h4 {
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.time {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1em;
}

.address-section {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.directions-button {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.directions-button:hover {
    background: #34495e;
}

.driving-tips {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.driving-tips ul {
    list-style-type: none;
    padding: 0;
}

.driving-tips li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.driving-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .address-section {
        padding: 15px;
    }
}

/* Add to Map Page Styles section */
.contact-section {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.contact-item {
    padding: 10px;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-item a {
    color: #0077B6;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #005b8c;
    text-decoration: underline;
}

/* Update address-section h3 to remove italics */
.address-section h3 {
    font-style: normal;
    color: #2c3e50;
    margin-bottom: 15px;
}

.shooting-times {
    margin: 2rem 0;
}

.shooting-times h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.times-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.times-table td {
    padding: 0.75rem;
    vertical-align: middle;
}

.time-label {
    width: 30%;
    white-space: nowrap;
}

.time-value {
    width: 70%;
}

.note {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}