﻿/* ============================= */
/* PIRATE VITA - DARK LUXURY THEME */
/* ============================= */

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Body ===== */
body {
    background-color: red !important;
    font-family: 'Trebuchet MS', 'Georgia', serif;
    background-color: #121212; /* Deep charcoal background */
    color: #f5e6c8; /* Warm parchment text */
    line-height: 1.7;
}

/* ===== Navigation ===== */
.navbar {
    background-color: #1c1c1c;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #8b0000;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #d4af37; /* gold */
}

.nav-links a {
    color: #f5e6c8;
    text-decoration: none;
    margin-left: 30px;
    font-weight: bold;
    font-size: 1.1rem;
}

    .nav-links a:hover {
        color: #d4af37;
        text-decoration: underline;
    }

/* ===== Hero Section ===== */
.hero {
    height: 65vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://images.unsplash.com/photo-1510137600163-2729bc6959a6?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 4px solid #d4af37;
    display: inline-block;
    padding-bottom: 10px;
}

.hero-text {
    margin-top: 20px;
    font-size: 1.3rem;
    color: #f5e6c8;
}

/* ===== Main Content ===== */
.container {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    border-left: 6px solid #8b0000;
    padding-left: 15px;
}

.content-text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

/* ===== Footer ===== */
.site-footer {
    background-color: #1c1c1c;
    color: #d4af37;
    text-align: center;
    padding: 2rem;
    border-top: 3px solid #8b0000;
    font-weight: bold;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links a {
        display: block;
        margin: 10px 0;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* ===== Google Map Styling (No Inline CSS) ===== */
.map-container {
    margin-top: 20px;
}

.map-frame {
    border: 0;
    width: 100%;
    height: 300px;
}