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

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

/* Header Styles for Fire Scene Page */
header {
    background-color: #121212;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2rem;
    color: #ff4444;
    margin: 0;
}

header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

header ul li {
    display: inline-block;
}

header ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

header ul li a:hover {
    color: #ff4444;
}

/* Fire Scene Section */
.fire-scene {
    margin-top: 80px;
    padding: 20px;
    background-color: #000; /* Black background for the fire scene */
    color: #fff; /* White text for contrast */
}

.fire-scene h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.fire-scene .description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #bbb;
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.embed-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.embed-box iframe {
    width: 100%;
    border: none;
}

/* Centered Back Button at the bottom */
.back-button {
    display: flex;
    justify-content: center; /* Center the button horizontally */
    margin-top: 30px; /* Space between the gallery and the button */
}

.back-button .btn {
    background-color: #ff4444;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-button .btn:hover {
    background-color: #e33e3e;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #121212;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
}
