/* ==============================
   GLOBAL STYLES
   ============================== */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #FFFAF0;
    color: #333;
    line-height: 1.7;
}

/* ==============================
   CONTAINER & STRUCTURE
   ============================== */
.container {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

/* ==============================
   HEADER
   ============================== */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
    max-width: 150px;
    height: auto;
}

/* ==============================
   NAVIGATION
   ============================== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #FFF;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease-in-out;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #CF4A39;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

nav a:hover::after,
nav a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ==============================
   SECTIONS & TEXT STYLING
   ============================== */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #CF4A39;
    text-align: center;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* ==============================
   BURGER MENU
   ============================== */
.burger {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
    background: #CF4A39;
    border: none;
    cursor: pointer;
    display: none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.burger span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background: #fff;
}

/* ==============================
   SIDEBAR MENU
   ============================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease-in-out;
    z-index: 1003;
}

.sidebar.active {
    left: 0;
}

.sidebar a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    font-size: 18px;
    display: block;
}

.burger.close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #CF4A39;
    padding: 8px;
    border-radius: 5px;
}

.burger.close span {
    background: #fff;
}

/* ==============================
   FOOTER
   ============================== */
footer {
    background-color: #86563B;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #CF4A39;
    text-decoration: none;
    font-weight: bold;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    .burger {
        display: block;
    }
    .sidebar {
        z-index: 1004;
    }
}

/* ==============================
   PRICE TABLE
   ============================== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
}

.price-table thead {
    background-color: #CF4A39;
    color: white;
}

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

.price-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* ==============================
   MAP STYLING
   ============================== */
.map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-top: 20px;
}
