/* Reset */
html { scroll-behavior: smooth; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* Logo */
.fixed-logo {
    position: fixed;
    top: 25px;
    left: 40px;
    z-index: 1001;
}

.fixed-logo img {
    width: 130px;
}

/* Nav */
.main-nav {
    position: fixed;
    top: 45px;
    right: 50px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero */
.hero-section {
    height: 100vh;
    background: url('bread.jpeg') center/cover no-repeat;
}

/* Sections */
.content-section {
    padding: 100px 0;
    text-align: center;
}

.gallery-bg {
    background: #fafafa;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

.section-title {
    letter-spacing: 5px;
    margin-bottom: 40px;
}

/* Story */
.story-image img {
    width: 100%;
    max-width: 850px;
    margin-top: 30px;
}

/* ✅ Gallery fix */
.main-slide {
    max-width: 800px;
    height: 500px;
    margin: auto;
    overflow: hidden;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

/* Thumbnails */
.thumbnails {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.thumbnails img {
    width: 80px;
    height: 55px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumbnails img:hover {
    opacity: 1;
}

.thumbnails img.active {
    opacity: 1;
    border-color: #333;
}

/* Mobile */
@media (max-width: 768px) {
    .main-slide {
        height: 300px;
    }
}