/* ===== Basic Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Body ===== */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0f0f12;
    color: #e6e6e6;
    line-height: 1.75;
}

/* ===== Header ===== */
header {
    background-color: #000;
    color: #c9a24d;
    padding: 36px 0;
    text-align: center;
    border-bottom: 4px solid #c9a24d;
}

header h1 {
    font-size: 2.4em;
    letter-spacing: 1.2px;
}

/* ===== Navigation ===== */
header nav ul {
    list-style: none;
    margin-top: 22px;
    text-align: center;
}

header nav ul li {
    display: inline-block;
    margin: 0 18px;
}

header nav ul li a {
    color: #e6e6e6;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

header nav ul li a:hover {
    color: #c9a24d;
    text-decoration: underline;
}

/* ===== Sections ===== */
section {
    padding: 48px;
    margin: 60px auto;
    max-width: 960px;
    background-color: #1a1a1d;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    transition: all 0.3s ease-in-out;
}

section:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.8);
    transform: translateY(-5px);
}

/* ===== Section Titles ===== */
section h2 {
    font-size: 2.3em;
    color: #c9a24d;
    margin-bottom: 22px;
    border-bottom: 2px solid #c9a24d;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

/* ===== Section Text ===== */
section p {
    font-size: 1.12em;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ===== Images ===== */
section img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    margin-top: 28px;
    border-radius: 12px;
    border: 3px solid #c9a24d;
}

/* ===== Buttons ===== */
button, .menu-button {
    padding: 12px 20px;
    background-color: #c9a24d;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

button:hover, .menu-button:hover {
    background-color: #e0b13b;
}

/* ===== Footer ===== */
footer {
    background-color: #000;
    color: #c9a24d;
    text-align: center;
    padding: 18px;
    font-size: 1.1em;
    margin-top: 70px;
    border-top: 2px solid #c9a24d;
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
    header h1 { font-size: 1.8em; }
    header nav ul li { display: block; margin: 12px 0; }
    section { padding: 26px; margin: 30px; }
    section h2 { font-size: 1.8em; }
}

/* ===== Smooth Scroll ===== */
html { scroll-behavior: smooth; }

/* ===== Back To Top Button ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #000;
    color: #c9a24d;
    border: 2px solid #c9a24d;
    padding: 12px 16px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}

#backToTop:hover {
    background-color: #c9a24d;
    color: #000;
}
