:root {
    --summer-ocean: #38bdf8; /* Cyan blue accent */
    --summer-sky: #e0f2fe;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --footer-bg: #1e293b;
    --footer-text: #cbd5e1;
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--bg-light);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--summer-ocean);
    color: white;
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
    background-color: #0284c7;
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.6);
    transform: translateY(-2px);
}

.mt-3 { margin-top: 1.5rem; }

/* ---------------- Navbar ---------------- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--summer-ocean);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--summer-ocean);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.contact-info {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}
.icon:hover {
    color: var(--summer-ocean);
}

/* ---------------- Hero Section ---------------- */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    z-index: 0;
    transform: scale(1.05);
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    width: 40px;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Darken image slightly for text readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: slideUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------------- Cards Section ---------------- */
.cards-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-meta i {
    color: var(--summer-ocean);
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ---------------- Split Section (About) ---------------- */
.split-section {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
}

.split-image {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    min-width: 300px;
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag {
    color: var(--summer-ocean);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.split-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.split-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* ---------------- Footer ---------------- */
.dark-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 80px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.footer-contact li, .footer-links li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--summer-ocean);
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--summer-ocean);
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.3s;
    cursor: pointer;
}

.footer-gallery img:hover {
    opacity: 0.7;
}

.footer-bottom {
    background-color: #151e2b;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--footer-text);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

/* ---------------- Secret Entrance ---------------- */
.secret-entrance {
    position: fixed; /* Keep it always in the corner, not just relative to footer */
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.1; /* Very hidden */
    transition: opacity 0.3s, transform 0.3s;
}

.secret-entrance:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-dark); /* Dark dot for contrast against possibly light backgrounds */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* Responsive fixes */
@media (max-width: 768px) {
    .nav-links, .nav-right {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .split-content h2 {
        font-size: 2rem;
    }
}
