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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero */
.hero-black {
    min-height: 100svh;
    background: #000; /* Pure black */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 250px;          /* Adjust as needed */
    margin-bottom: 20px;
}


.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 30px;
    background: transparent;
    color: #c9a46a;
    border: 1px solid rgba(201, 164, 106, 0.6);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(201, 164, 106, 0.15);
    border-color: rgba(201, 164, 106, 1);
}
/*Other style for the "View Our Work" button
.btn {
    padding: 12px 30px;
    background: rgba(201, 164, 106, 0.85);;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #b18b55;
}/*

/* Sections */ 
section {
    padding: 70px 10%;
    text-align: center;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    section {
        padding: 50px 6%;
    }
}

/* About */
.about p {
    max-width: 700px;
    margin: auto;
    color: #555;
}
/* Portfolio */

#portfolio {
    scroll-margin-top: 60px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Handles portrait & landscape */
    transition: transform 0.4s;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

.horizontal-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.horizontal-gallery .gallery-item {
    flex: 0 0 auto;
    width: 320px;                    /* Consistent card width */
    height: min(420px, 70vh);        /* Tall enough for portraits */
    scroll-snap-align: start;
    overflow: hidden;
}

.horizontal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.horizontal-gallery img:hover {
    transform: scale(1.05);
}

/* Clean scrollbar */
.horizontal-gallery::-webkit-scrollbar {
    height: 6px;
}

.horizontal-gallery::-webkit-scrollbar-thumb {
    background: #c9a46a;
    border-radius: 10px;
}

.horizontal-gallery::-webkit-scrollbar-track {
    background: transparent;
}

/* Services */
.services {
    background: #f8f8f8;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.service-list div {
    width: 260px;              /* same width */
    min-height: 75px;         /* same height */
    display: flex;
    align-items: center;       /* vertical centering */
    justify-content: center;   /* horizontal centering */
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
}

.service-list div:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Contact */
.contact p {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 15px;
}
