/* 1. Variables & Reset */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --bg-color: #f4f4f9;
    --white: #ffffff;
    --spacing: 1rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: url('assets/BrickOven_Fire.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* 2. Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* 3. Header & Navigation */
.site-header {
    background-color: #2c3e50;
    color: white;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.site-header h1 {
    margin: 0 0 2rem 0;
    font-size: 2.5rem;
}

.site-header nav {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px 8px 0 0;
}

.site-header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-header nav ul li a {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
}

.site-header nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 4. Main Content */
main {
    flex: 1; /* Pushes footer to bottom if content is short */
    padding: 4rem 0;
}

.hero {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.hero h2 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.about-img {
    float: left;
    margin: 0 1.5rem 1rem 0;
    max-width: 300px;
    border-radius: 4px;
}

/* 5. Components (Buttons) */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2980b9;
}

/* 6. Footer */
.site-footer {
    background-color: #ddd;
    text-align: center;
    padding: var(--spacing);
    margin-top: auto;
    font-size: 0.9rem;
}

/* 7. Gallery Slideshow */
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.mySlides img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.4);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}