/* ============================
   VARIABLES
============================ */
:root {
    --primary: #14325f;
    --accent: #d4af37;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #1f2d3d;
    --text-muted: #4a4a4a;
    --border-light: rgba(200,212,242,0.4);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 36px rgba(0,0,0,0.12);
    --transition: 0.4s ease;
    --font-heading: "Cinzel", "Georgia", serif;
    --font-body: "Segoe UI", Arial, sans-serif;
}

/* ============================
   GENERAL
============================ */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 80px;
    line-height: 1.7;
}

/* ============================
   NAVBAR
============================ */
.navbar {
    width: 100%;
    height: 80px;
    padding: 0 50px;
    background: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.home-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.logo-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 12px;
    position: relative;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    color: var(--accent);
}

.menu a:hover { color: var(--accent); }
.menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.menu a:hover::after { width: 100%; }

/* MOBILE NAV */
.mobile-toggle { display: none; font-size: 24px; cursor: pointer; }
@media(max-width:768px){
    .mobile-toggle{display:block;}
    .menu{position:absolute; top:80px; left:0; width:100%; background:var(--bg-white); display:none; padding:25px 0; box-shadow: var(--shadow-lg);}
    .menu.open{display:block;}
    .menu ul{flex-direction:column; align-items:center; gap:25px;}
}

/* LOVE SECTION */
.love { padding-bottom: 120px; }
.love h1 { text-align: center; font-size: 36px; font-weight: bold; color: #d4af37; }
.library-sub { text-align: center; margin-bottom: 40px; font-size: 18px; }

/* GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* VIDEO CARD */
.video-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-card h3 { margin-top: 15px; font-size: 20px; }
.synopsis { margin-top: 8px; font-size: 15px; color: #444; }

/* YOUTUBE TILE */
.video-tile {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    padding-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    background: black;
}
.video-tile iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}



/* ===========================
   COMPACT FOOTER — Blue Professional
=========================== */
.footer {
    background-color: #1a3f7a; /* deep blue */
    color: #eaf0ff;
    padding: 20px 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #eaf0ff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #eaf0ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #2d68ff;
    text-decoration: underline;
}

.footer-copy {
    font-size: 12px;
    color: #c8d4f2;
    margin-top: 8px;
}

/* ===========================
   COMPACT FOOTER 
=========================== */
.footer {
    background-color: #1a3f7a; /* deep blue */
    color: #eaf0ff;
    padding: 20px 15px;
    font-family: "Segoe UI", Arial, sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #eaf0ff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #eaf0ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #2d68ff;
    text-decoration: underline;
}

.footer-copy {
    font-size: 12px;
    color: #c8d4f2;
    margin-top: 8px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
}
