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

/* Font Styles */
.eb-garamond-title {
    font-family: 'EB Garamond', serif;
    font-weight: 400;
}
.biggerfont {
    font-weight: 800;
}

.permanent-marker-subtitle {
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;
}
.permanentFont {
 
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;

}

/* Fullscreen Video Section */
.intro-video {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.intro-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}
.intro-text h1 {
    font-size: 6rem;
}
.intro-text .permanent-marker-subtitle {
    font-size: 2rem;
    margin-top: 20px;
}

/* Scroll Down Indicator with Text */
.scroll-indicator-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-text {
    color: white;
    font-size: 1rem;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 10px;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid white;
    animation: bounce 1.5s infinite ease-in-out;
    margin-left: calc(50% - 12px);
}

@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

/* Header Section */
.main-header {
    position: sticky;
    top: 0;
    background: #EAF0FB;
    border-bottom: 1px solid #ddd;
    padding: 1rem 2rem;
    z-index: 10;
}
.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.menu-left {
    flex: 1;
    text-align: left;
}
.menu-center {
    flex: 1;
    text-align: center;
    font-size: 2em;
}
.menu-right {
    flex: 1;
    text-align: right;
}
.main-header nav a {
    font-family: 'Permanent Marker', cursive;
    text-decoration: none;
    color: #333;
    font-size: 1.5em;
}

/* Image Gallery Section */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    padding: 20px;
    min-height: 100vh;
    align-items: center;
}
.gallery-item {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}
.gallery-item .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .hover-overlay {
    opacity: 1;
}
