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

:root {
    --navy: #0d1b2a;
    --gold: #c9a84c;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --dark-gray: #1e2a38;
    --medium-gray: #4a5568;
    --green: #48bb78;
    --amber: #ed8936;
    --red: #f56565;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    background-image: url('hero-background.JPEG');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 300;
}

.availability-notice {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.cta-button:hover {
    background-color: #d4b960;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--gold);
}

/* Video Section */
.video-section {
    background-color: var(--dark-gray);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Placeholder */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* Hide placeholder when video is loaded */
.video-wrapper.video-loaded .video-placeholder {
    display: none;
}

/* Features Section */
.features-section {
    background-color: var(--navy);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--dark-gray);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.8;
    color: var(--light-gray);
}

/* Specs Bar */
.specs-bar {
    background-color: var(--dark-gray);
    padding: 40px 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.spec-item {
    padding: 15px;
    border-left: 3px solid var(--gold);
}

.spec-item strong {
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    text-align: center;
    background-color: var(--dark-gray);
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    font-weight: 300;
}

/* Photos Page */
.photos-section {
    background-color: var(--navy);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.photo-card {
    background-color: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.photo-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}

.photo-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card:hover .photo-wrapper img {
    transform: scale(1.05);
}

.photo-caption {
    padding: 20px;
    text-align: center;
    color: var(--gold);
    font-weight: 600;
}

/* Equipment Page */
.equipment-section {
    background-color: var(--navy);
}

.equipment-card {
    background-color: var(--dark-gray);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid var(--gold);
}

.equipment-card h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.equipment-list {
    list-style: none;
}

.equipment-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--light-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.equipment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.equipment-list li:last-child {
    border-bottom: none;
}

/* Time-Limited Section */
.time-limited-section {
    background-color: var(--dark-gray);
}

.time-limited-header {
    text-align: center;
    margin-bottom: 50px;
}

.time-limited-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.time-limited-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--navy);
}

.time-limited-table thead {
    background-color: var(--gold);
}

.time-limited-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
}

.time-limited-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-limited-table tbody tr:nth-child(even) {
    background-color: var(--dark-gray);
}

.time-limited-table td {
    padding: 20px;
    color: var(--light-gray);
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-current {
    background-color: rgba(72, 187, 120, 0.2);
    color: var(--green);
}

.status-due-soon {
    background-color: rgba(237, 137, 54, 0.2);
    color: var(--amber);
}

.status-overdue {
    background-color: rgba(245, 101, 101, 0.2);
    color: var(--red);
}

/* Contact Page */
.contact-section {
    background-color: var(--navy);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--dark-gray);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.required {
    color: var(--red);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    background-color: var(--navy);
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.radio-label:hover {
    border-color: var(--gold);
}

.radio-label input[type="radio"] {
    margin-right: 10px;
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

.radio-label span {
    color: var(--light-gray);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--navy);
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.submit-button:hover:not(:disabled) {
    background-color: #d4b960;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.submit-button:disabled {
    background-color: var(--medium-gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.success-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(72, 187, 120, 0.2);
    color: var(--green);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.contact-info {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--dark-gray);
    border-radius: 10px;
    border-left: 5px solid var(--gold);
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--light-gray);
    line-height: 1.8;
}

/* Narrative Page */
.narrative-section {
    background-color: var(--navy);
    padding: 60px 0;
}

.narrative-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--dark-gray);
    padding: 50px;
    border-radius: 10px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.narrative-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--light-gray);
    font-size: 1.1rem;
}

.narrative-content p:last-child {
    margin-bottom: 0;
}

.narrative-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.narrative-content h2:first-child {
    margin-top: 0;
}

.narrative-content ul,
.narrative-content ol {
    margin-bottom: 20px;
    margin-left: 30px;
    line-height: 1.8;
    color: var(--light-gray);
}

.narrative-content li {
    margin-bottom: 10px;
}

.narrative-content a {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.narrative-content a:hover {
    color: #d4b960;
}

.narrative-content strong {
    color: var(--gold);
    font-weight: 600;
}

.narrative-content em {
    color: var(--white);
    font-style: italic;
}

/* Narrative CTA Section */
.narrative-cta-section {
    background-color: var(--dark-gray);
    padding: 80px 0;
}

.narrative-cta-content {
    text-align: center;
}

.narrative-cta-content .availability-notice {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.narrative-cta-content .cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.narrative-cta-content .cta-button:hover {
    background-color: #d4b960;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Footer */
footer {
    background-color: #0a1420;
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid var(--gold);
}

footer p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

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

.fade-in {
    animation: fadeIn 1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(13, 27, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 20px 0;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .equipment-card {
        padding: 25px;
    }

    .narrative-content {
        padding: 30px 20px;
    }

    .narrative-content p {
        font-size: 1rem;
    }

    .narrative-content h2 {
        font-size: 1.5rem;
    }

    /* Responsive Table */
    .time-limited-table thead {
        display: none;
    }

    .time-limited-table tbody tr {
        display: block;
        margin-bottom: 30px;
        border: 2px solid var(--gold);
        border-radius: 10px;
        overflow: hidden;
    }

    .time-limited-table td {
        display: block;
        text-align: right;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        padding-left: 50%;
    }

    .time-limited-table td:last-child {
        border-bottom: none;
    }

    .time-limited-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        font-weight: 600;
        color: var(--gold);
        text-align: left;
    }

    .status-badge {
        float: none;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .radio-group {
        gap: 8px;
    }

    .radio-label {
        padding: 10px;
    }
}
