/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: whitesmoke;
}

/* ===== FIXED NAVBAR ===== */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: black;
    border-bottom: 2px solid gold;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: gold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px;
    font-size: 16px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: gold;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
    display: none;
    position: absolute;
    background: black;
    border: 1px solid orangered;
    min-width: 200px;
    top: 35px;
    left: 0;
    padding: 10px 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-icon {
    display: none;
    font-size: 28px;
    color: orangered;
    cursor: pointer;
}

/* ===== LANDING PAGE ===== */
.landing {
    background-image: url("images/landing.jpg"); /* your persistent image */
    background-size: cover;
    background-position: left;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 90px;
}

.landing-content h1 {
    font-size: 60px;
    color: gold;
    text-shadow: 2px 2px 10px black;
}

.landing-content p {
    font-size: 22px;
    margin: 20px 0;
}

.cta {
    padding: 12px 25px;
    font-size: 18px;
    background: gold;
    color: black;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.cta:hover {
    background: white;
}

/* ===== SECTION STYLE ===== */
.content-section {
    padding: 120px 60px;
}

.content-section h2 {
    font-size: 36px;
    color: gold;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 850px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: black;
        position: absolute;
        top: 60px;
        right: 0;
        padding: 10px 0;
        border-top: 2px solid gold;
    }

    .nav-links.show {
        display: block;
    }

    .mobile-menu-icon {
        display: block;
    }
}
/* ===== HERO SECTION ===== */
.landing {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-image-container {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    animation: fadeIn 2s ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(black 10%, rgba(0,0,0,0.3) 60%, black 90%);
}

/* ===== HERO TEXT ===== */
.landing-content {
    position: relative;
    max-width: 800px;
    z-index: 5;
    animation: fadeUp 2s ease-out forwards;
}

.glow-title {
    font-size: 60px;
    font-weight: bold;
    color: gold;
    text-shadow: 0 0 15px gold;
    animation: glowPulse 3s infinite ease-in-out;
}

.tagline {
    font-style: italic;
    margin-top: 15px;
    font-size: 20px;
}

/* Upload button */
.hero-upload {
    position: absolute;
    top: 80px;
    right: 40px;
    z-index: 20;
    text-align: right;
}

.upload-label {
    font-size: 14px;
    color: gold;
    margin-right: 10px;
}

/* CTA button */
.cta {
    padding: 12px 28px;
    font-size: 20px;
    text-decoration: none;
    background: gold;
    color: black;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
    transition: 0.3s ease;
}

.cta:hover {
    background: #fff8d6;
    box-shadow: 0 0 20px gold;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 10px gold; }
    50% { text-shadow: 0 0 25px gold; }
    100% { text-shadow: 0 0 10px gold; }
}

.fade-in {
    animation: fadeIn 2s ease-in-out;
}

.slide-up {
    animation: fadeUp 2.5s ease-out;
}

/* Responsive */
@media (max-width: 850px) {
    .glow-title {
        font-size: 42px;
    }

    .hero-upload {
        right: 10px;
        top: 60px;
    }
}
/* ==== PROFILE SECTION ===== */
.profile-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 40px;
}

.profile-title {
    font-size: 38px;
    margin-bottom: 20px;
    color: gold;
}

.glow-gold {
    text-shadow: 0 0 10px gold;
}

.profile-text {
    width: 60%;
    font-size: 18px;
    line-height: 1.7;
    color: white;
    animation: fadeIn 2s ease-in-out;
}

/* ==== PROFILE IMAGE SIDE ==== */
.profile-image-wrapper {
    width: 35%;
    position: relative;
    text-align: center;
    animation: slideUp 2s ease-out;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 0 20px black, 0 0 25px gold;
    animation: fadeIn 2s ease-in-out;
}

.upload-box {
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid gold;
}

.upload-box label {
    color: gold;
    font-size: 14px;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 850px) {
    .profile-container {
        flex-direction: column;
        text-align: rightleft;
    }

    .profile-text, .profile-image-wrapper {
        width: 120%;
    }
}
/* Services Row (horizontal alignment) */
.services-row{display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:12px}
.service-card{flex:1 1 30%;
    background:var(--card);
    padding:16px;
    border-radius:08px;
    box-shadow:0 2px 6px rgba(0,0,0,0.04)}
.service-card h3{margin-top:0}

/* Feature panes */
.feature-pane{background:var(--card);
    padding:16px;border-radius:8px;
    margin-top:12px;
    box-shadow:0 2px 6px rgba(0,0,0,0.03)}
.book-list{display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.book-item{background:green;
    padding:12px;border-radius:6px;
    border:1px solid #eee}
.media-preview{height:160px;
    border-radius:6px;
    border:1px solid #ddd;
    padding:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden}
.media-preview img, .media-gallery video, .media-gallery img{max-width:100%;
    max-height:100%;
    object-fit:cover}
.media-gallery{display:flex;
    gap:8px;
    flex-wrap:wrap}
