/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #444;
    background-color: #fdfdfd; 
    scroll-behavior: smooth; 
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: #b5835a; 
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #b5835a;
}

/* --- Hero Section --- */
header {
    height: 70vh;
    /* This color #b5835a will show if the image fails to load */
    background-color: #b5835a; 
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.pexels.com/photos/1035665/pexels-photo-1035665.jpeg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #b5835a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 25px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #8e6543;
    transform: translateY(-2px);
}

/* --- Gallery Section --- */
#gallery {
    padding: 80px 8%;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.main-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #f0f0f0; /* Light gray box shows if images are missing */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 131, 90, 0.8); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.view-btn {
    padding: 12px 25px;
    background: white;
    color: #b5835a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* --- Contact Section --- */
#contact {
    background-color: #f9f5f2; 
    padding: 80px 8%;
}

.contact-container {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 50px 0;
    background: #333;
    color: #bbb;
}

/* --- Mobile Fix --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    nav { flex-direction: column; padding: 20px; }
}

.contact-methods {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.method-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #b5835a;
}

.fb-btn {
    background-color: #0084ff; /* Facebook Blue */
    width: 100%;
    text-align: center;
}

.fb-btn:hover {
    background-color: #0066cc;
}

/* Make it look good on phones */
@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
    }
    .divider {
        padding: 20px 0;
        width: 100%;
    }
}