/* RESET & BASE */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* STICKY HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* HEADER SCROLL STATES */
.site-header {
    background: transparent;
    box-shadow: none;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    padding: 6px 0;
}

.nav-logo {
    height: 60px;
    transition: height 0.3s ease;
}

.site-header.scrolled .nav-logo {
    height: 45px;
}

/* REMOVE HERO MARGIN (header overlays hero) */
.hero {
    margin-top: 0;
}

/* HERO TEXT ANIMATION */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-content.loaded {
    opacity: 1;
    transform: translateY(0);
}

.nav-logo {
    height: 50px;
    display: block;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #007794;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover { color: #00b5d1; }

/* HERO SECTION */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px; /* Space for sticky header */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 90%;
}

.hero-headline {
    font-family: 'Aclonica', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin: 20px 0 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-btn {
    display: inline-block;
    background: #00b5d1;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, background 0.3s;
}

.hero-cta-btn:hover {
    background: #007794;
    transform: scale(1.05);
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease, transform 1s ease;
}


.hero-content.loaded .hero-logo {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* CONTENT SECTIONS */
.editorial {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body { padding: 25px; }

.card-link {
    color: #007794;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #00b5d1;
}

/* FOOTER */
.site-footer {
    background: #3B1D00;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-contact a { color: #00b5d1; text-decoration: none; }

/* HAMBURGER (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* When header is scrolled, hamburger turns dark */
.site-header.scrolled .hamburger span {
    background: #007794;
}

/* MOBILE MENU PANEL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 12px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 1050;
    padding-top: 100px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0 30px;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    text-decoration: none;
    color: #007794;
    font-size: 1.2rem;
    font-weight: 600;
}

/* OPEN STATE */
.mobile-menu.open {
    right: 0;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}
