/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --text-color: #333333;
    --light-text: #777777;
    --accent-color: #c8a97e;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header Styles */
.main-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    margin-top: 80px;
    padding: 20px 0 40px;
}

.hero {
    text-align: center;
    padding: 100px 0 40px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
}

/* Sections */
section {
    margin-bottom: 60px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.important-notes {
    background-color: #fff9f0;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 4px 4px 0;
}

.important-notes h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.important-notes ul {
    padding-left: 20px;
}

.important-notes li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.important-notes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Detailed Video Section */
.detailed-video-directions {
    margin: 60px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.detailed-video-directions .subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 30px;
}

.video-description {
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.video-highlights {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 4px 4px 0;
}

.video-highlights h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.video-highlights ul {
    padding-left: 20px;
}

.video-highlights li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.video-highlights li::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: var(--accent-color);
}

.seo-content {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #ddd;
}

.seo-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.seo-content h5 {
    color: var(--text-color);
    margin: 25px 0 15px;
    font-size: 1.1rem;
}

/* Written Directions */
.written-directions ol {
    counter-reset: step-counter;
    padding-left: 0;
}

.written-directions li {
    position: relative;
    padding: 15px 0 15px 60px;
    border-bottom: 1px solid #eee;
    counter-increment: step-counter;
}

.written-directions li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Transportation Section */
.transportation {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.option {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.option h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* Offline Notice */
.offline-notice {
    background-color: #e8f4f8;
    border-left: 4px solid #4a90e2;
    padding: 20px;
    border-radius: 0 4px 4px 0;
    margin-top: 40px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--accent-color);
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        margin-top: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .transport-options {
        grid-template-columns: 1fr;
    }

    .written-directions li {
        padding-left: 50px;
    }
}

/* Print Styles */
@media print {
    .main-header, .main-nav, .btn, .offline-notice, footer {
        display: none;
    }

    main {
        margin-top: 0;
        padding: 0;
    }

    .container {
        padding: 0;
    }

    .video-container {
        display: none;
    }

    .important-notes {
        page-break-inside: avoid;
    }

    @page {
        margin: 1cm;
    }
}
