/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Unbounded', sans-serif;
}

body {
    font-family: 'Unbounded', sans-serif;
    margin: 0;
    padding: 0;
    color: #111;
    background: #fff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Unbounded', sans-serif;
}

/* Subtext styles */
p, small, .subtext, .description, .caption, .text-secondary {
    font-family: 'Unbounded', sans-serif;
    font-variation-settings: "wght" 300, "opsz" 6;
}

/* Navbar specific styles */
.nav-links a {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
}

/* Dropdown menu styles */
.dropdown-menu a, .iteration-menu a {
    font-family: 'Unbounded', sans-serif;
    font-variation-settings: "wght" 100, "opsz" 3;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 64px; /* Adjust for fixed navbar */
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-icon {
    position: absolute;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.5rem;
    border-radius: 50%;
    transition: transform 0.2s;
    top: 10%;
}

.overlay-icon:hover {
    transform: scale(1.1);
}

.content {
    padding: 2rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    width: 100%;
  }
  footer p {
    margin: 0;
    font-size: 0.9rem;
  }
/* Image Sections */
.image-section {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
}

.two-images .image-card {
    flex: 1;
}

.four-images {
    flex-wrap: wrap;
}

.four-images .image-card {
    flex: 1 1 calc(25% - 2rem);
}

.image-card {
    flex: 1;
    text-align: center;
}

.image-card img {
    width: 100%;
    border-radius: 15px;
}

.image-text {
    margin-top: 1rem;
}

.image-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.image-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #111;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: #333;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f0f0f0;
}

/* Page Content */
.page-content {
    padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 390px) {
    .hero {
        height: 100vh;
        width: 100%;
    }
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    padding-right: 5rem;
}

.overlay-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.overlay-text {
    color: white;
    text-align: right;
    font-family: 'Unbounded', sans-serif;
}

.overlay-header {
    font-size: 3rem;
    font-weight: bold;
}

.overlay-subtext {
    font-size: 1.5rem;
    font-weight: 300;
} 