/*Reset*/

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

/*Body Styling*/

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    background-color: #f1e7dc;
    color: #3b2f2f;
}

/*Sticky Top Bar*/

.top-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/*Header*/

header {
    background-color: #4b2e2b;
    color: #fdf8f3;
    text-align: center;
    padding: 35px 20px 25px 20px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

header p {
    font-weight: 300;
    font-size: 17px;
    opacity: 0.9;
}

/*Navigation*/

nav {
    background-color: #6f4e37;
    padding: 14px 0;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

nav h2 {
    display: none;
}

nav ul {
    list-style: none;
}

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

nav ul li a {
    text-decoration: none;
    color: #fdf8f3;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #f4c27a;
}

/*Main Content Spacing*/

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px; /* Top & bottom spacing around all sections */
    gap: 35px; /* Consistent spacing between sections */
}

section {
    background-color: #fffaf4;
    width: 100%;
    max-width: 750px;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(75, 46, 43, 0.08);
    border: 1px solid #e6d5c3;
}

/* Section headings & paragraphs */
section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: #4b2e2b;
}

section p {
    font-size: 16px;
    margin-bottom: 12px;
}

/*Images*/

img {
    margin-top: 15px;
    border-radius: 6px;
    max-width: 100%;
    height: auto;
}

/*Footer*/

footer {
    background-color: #4b2e2b;
    color: #fdf8f3;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
    /*Theme Toggle Button*/

#theme-toggle {
    margin-top: 10px;
    padding: 8px 14px;
    border: none;
    background-color: #f4c27a;
    color: #3b2f2f;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#theme-toggle:hover {
    background-color: #e0a95c;
}

/*Evening Mode Styles*/

body.dark-mode {
    background-color: #2b1e1b;
    color: #f5e6d3;
}

body.dark-mode header {
    background-color: #2a1a18;
}

body.dark-mode nav {
    background-color: #3a2a28;
}

body.dark-mode section {
    background-color: #3b2b28;
    border: 1px solid #5a403c;
}

body.dark-mode section h2 {
    color: #f4c27a; 
}

body.dark-mode footer {
    background-color: #2a1a18;
}

body.dark-mode nav ul li a {
    color: #f5e6d3;
}

body.dark-mode nav ul li a:hover {
    color: #f4c27a;
}
    
