body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    --background-color: #f4f4f9;
    background-color: #DEAC61;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #486D4B;
    color: white;
}

.logo {
    height: 200px;
}

contact a {
    margin-left: 20px;
    color: #ecf0f1;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

contact a:hover, contact a.active {
    color: #B8753E;
    text-decoration: underline;
}

nav a {
    margin-left: 20px;
    color: #ecf0f1;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

nav a:hover, nav a.active {
    color: #B8753E;
    text-decoration: underline;
}

main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}

main a {
    color: #486D4B;
}

main a:hover, main a.active {
    color: #B8753E;
    text-decoration: underline;
}

h1, h2, h3 {
    -- color: #2c3e50;
    color: #486D4B;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #B8753E;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #486D4B;
}

/* Gallery Styles */
.gallery-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.photo {
    flex: 1 1 300px; /* Responsive flex items */
    padding: 5px;
    text-align: center;
}

.photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #486D4B;
    color: #bdc3c7;
    margin-top: 40px;
}
