
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111111;
    margin: 0;
    padding: 0;
    transition: background 0.5s, color 0.5s;
}
body.light {
    background-color: #ffffff;
    color: #111111;
}
header.hero {
    background: linear-gradient(to right, #111111, #333333);
    color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
}
header.hero .logo {
    max-width: 160px;
    margin-bottom: 1rem;
}
section {
    padding: 3rem 1rem;
    border-top: 1px solid #eeeeee;
    max-width: 960px;
    margin: auto;
}
h1, h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}
ul {
    list-style: disc;
    padding-left: 1.5rem;
}
footer {
    text-align: center;
    padding: 1rem;
    background-color: #f4f4f4;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.02);
}
.intro {
    display: none; /* Disabled cinematic intro for modern look */
}
.mode-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
    padding: 0.5rem 1rem;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

html {
    scroll-behavior: smooth;
}
section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}
button, .mode-toggle {
    transition: background 0.3s, transform 0.3s;
}
.mode-toggle:hover {
    background: #333;
    transform: scale(1.05);
}
header.hero h1 {
    font-size: 2.5rem;
    animation: fadeSlideIn 1.2s ease-out forwards;
}
@keyframes fadeSlideIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
