/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #151b24; /* Dark navy matched to your logo's background */
    color: #f3edd8; /* Cream color matched to your logo's text */
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header & Logo */
header {
    margin-bottom: 60px;
}

.logo {
    width: 280px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.03);
}

/* Gallery Section */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    width: 340px;
    height: 340px;
    background-color: #0d1117;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Footer Section */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(243, 237, 216, 0.15);
    padding-top: 50px;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

/* Address Styling */
.location {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
}

.address-link {
    color: #f3edd8;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.address-link svg {
    flex-shrink: 0;
    color: #ce9c62; /* Gold accent pulled from your logo */
}

.address-link:hover {
    color: #ce9c62;
}

/* Social Button Styling */
.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #f3edd8;
    border: 1px solid #ce9c62;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-facebook:hover {
    background-color: #ce9c62;
    color: #151b24;
    box-shadow: 0 4px 15px rgba(206, 156, 98, 0.4);
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }
    
    .gallery-item {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .logo {
        width: 220px;
    }
    
    .address-link {
        flex-direction: column;
    }
}