* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: serif;
    background-color: black;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.logo-container {
    position: absolute;
    left: 20px;
}

.logo {
    width: 80px;
    height: auto;
}

h1 {
    font-family: 'Forum', serif;
    font-size: 2.5em;
    font-weight: lighter;
    text-align: center;
    color: hsl(38, 60%, 53%);
}

.intro-section {
    text-align: center;
    max-width: 800px;
    padding: 30px;
    line-height: 1.6;
}

.intro-section h2 {
    font-size: 2em;
    color: hsl(38, 60%, 53%);
    margin-bottom: 10px;
}

.intro-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.menu-button {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 20px;
    background-color: hsl(38, 60%, 53%);
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.menu-button:hover {
    background-color: hsl(38, 60%, 40%);
}

.gallery-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

.gallery-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gallery-row img {
    width: calc(33% - 20px);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-row img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .gallery-row img {
        width: calc(50% - 10px);
    }
    .intro-section h2 {
        font-size: 1.8em;
    }
    .intro-section p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .gallery-row {
        flex-direction: column;
    }
    .gallery-row img {
        width: 100%;
    }
    h1 {
        font-size: 2em;
    }
    .intro-section h2 {
        font-size: 1.6em;
    }
    .intro-section p {
        font-size: 0.9em;
    }
}
footer {
    background-color: #0c0c0c;
    color: #ffffff;
    border-top: 2px solid hsl(38, 60%, 53%);
    padding: 40px 20px 20px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: start;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    padding: 20px;
}

.footer-section {
    text-align: center;
    max-width: 350px;
}

.footer-section h3 {
    font-size: 1.5em;
    color: hsl(38, 60%, 53%);
    margin-bottom: 10px;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    font-family: 'Times New Roman', serif;
}

.footer-section p {
    font-size: 1em;
    margin: 10px 0;
    color: #cccccc;
    line-height: 1.6;
}

.footer-section a {
    font-size: 1em;
    color: hsl(38, 60%, 53%);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #333;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.9em;
    color: #777;
}

@media (max-width: 768px) {
    .logo-container img{
        padding-right: 30px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer-section {
        max-width: 90%;
        padding: 10px;
    }
    
    .footer-bottom p {
        font-size: 0.8em;
        color: #777;
        margin-top: 10px;
        text-align: center;
    }
}
.logo-container img{
    padding-right: 10px;
}

@media (max-width: 500px) {
    .logo-container img{
        padding-right: 30px;
    }
    footer {
        padding: 30px 10px 10px;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-section h3 {
        font-size: 1.3em;
        margin-bottom: 8px;
    }

    .footer-section p {
        font-size: 0.9em;
    }

    .footer-section a {
        font-size: 0.9em;
    }

    .footer-bottom p {
        font-size: 0.75em;
    }
}
