/* =====================================================
   ROOT VARIABLES – LUXURY GOLD SYSTEM
===================================================== */
:root {
    --gold-main: #c7a402;
    --gold-light: #f1e3a2;
    --gold-dark: #8b6f14;
    --gold-glow: rgba(199, 164, 2, 0.35);

    --bg-dark: #121d14;
    --text-soft: rgba(255, 245, 210, 0.85);
}

/* =====================================================
   BASE RESET
===================================================== */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: auto;
    overflow-y: auto;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-dark);
    font-family: 'Cinzel', serif;
    position: relative;
    overflow: hidden;
}

/* =====================================================
   BACKGROUND IMAGE + CINEMATIC OVERLAY
===================================================== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("../images/bg.jpeg") center / cover no-repeat;
    opacity: 0.20;
    filter: contrast(0.7);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.55)
    );
    z-index: -1;
}

/* =====================================================
   WRAPPER
===================================================== */
.circle-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    z-index: 2;
    margin-top:20px;
}

/* =====================================================
   CENTER LOGO
===================================================== */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
     z-index: 5;
     pointer-events: none;
}

.center-logo img {
    max-width: 350px;
}

/* =====================================================
   GOLD TEXT UTILITY
===================================================== */
.gold-text {
    background: linear-gradient(
        180deg,
        var(--gold-light),
        var(--gold-main),
        var(--gold-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 2px 4px rgba(0,0,0,0.65),
        0 0 18px var(--gold-glow);
}

/* =====================================================
   ORBIT MENU ITEMS
===================================================== */
.orbit-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    white-space: nowrap;

    background: linear-gradient(
        180deg,
        var(--gold-light),
        var(--gold-main),
        var(--gold-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 2px 5px rgba(0,0,0,0.7),
        0 0 16px var(--gold-glow);

    transition: transform 0.35s ease, text-shadow 0.35s ease;
}

.orbit-item a {
  display: inline-block;
  padding: 8px 10px;
}

.orbit-item:hover {
    transform: scale(1.08);
    text-shadow:
        0 3px 8px rgba(0,0,0,0.85),
        0 0 26px var(--gold-glow);
}

/* =====================================================
   ORBIT POSITIONS (DESKTOP)
===================================================== */
/* .item1 { top: 40px; left: 50%; transform: translateX(-50%); }
.item2 { top: 120px; right: 70px; transform: rotate(45deg); }
.item3 { top: 50%; right: 20px; transform: translateY(-50%) rotate(-90deg); }
.item4 { bottom: 120px; right: 90px; transform: rotate(-45deg); }
.item5 { bottom: 40px; left: 50%; transform: translateX(-50%); }
.item6 { bottom: 120px; left: 90px; transform: rotate(45deg); }
.item7 { top: 50%; left: 20px; transform: translateY(-50%) rotate(90deg); }
.item8 { top: 120px; left: 70px; transform: rotate(-45deg); } */


.item1 { top: 28px; left: 45%; transform: rotate(60deg); }
.item2 { bottom: 80px; left: 37%; transform: translateY(-50%); }
.item3 { top: 66%; right: 16px;  transform:rotate(60deg); }
.item4 { bottom: 103px; right: -28px; transform: translateX(-50%); }
.item5 { top: 275px; left: 62%; transform: rotate(60deg); }
.item6 { bottom: 110px; left: 95px; transform: translateX(-50%); }
.item7 { top: 70%; left: 20px; transform: translateY(-50%) rotate(-60deg); }
.item8 { top: 90px; left: 150px; transform: rotate(-60deg); }
.item9 { top: 270px; left: 45px; transform: rotate(-60deg); }
.item10 { top: 126px; left: 53%; transform: rotate(60deg); }
/* =====================================================
   LINKS
===================================================== */
a {
    text-decoration: none;
    color: inherit;
}

/* =====================================================
   PAGE HEADER
===================================================== */
.page-header {
    text-align: center;
    padding: 40px 20px 20px;
}

.page-title {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 15px;
    letter-spacing: 2px;
}

.page-header,
.page-title,
.page-subtitle {
    background: linear-gradient(
        180deg,
        var(--gold-light),
        var(--gold-main),
        var(--gold-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 2px 6px rgba(0,0,0,0.6),
        0 0 16px var(--gold-glow);
}

/* =====================================================
   CONTENT
===================================================== */
.page-content {
    max-width: 820px;
    margin: auto;
    padding: 30px 24px 120px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-soft);
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

/* =====================================================
   FILM LIST
===================================================== */
.film-list {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.film-list h3 {
    font-size: 20px;
    letter-spacing: 2px;
}

.film-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.film-list li {
    padding: 6px 0;
    color: var(--text-soft);
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
    text-align: center;
    padding: 40px 20px 30px;
    font-size: 14px;
    color: var(--text-soft);
}

.site-footer a {
    font-weight: 600;
}

/* =====================================================
   BACK BUTTON
===================================================== */
.page-back {
    position: fixed;
    top: 20px;
    left: 24px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;

    background: linear-gradient(
        180deg,
        var(--gold-light),
        var(--gold-main)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
    z-index: 10;
}

/* =====================================================
   RESPONSIVE (MOBILE)
===================================================== */
@media (max-width: 768px) {

    body {
        align-items: flex-start;
        padding-top: 40px;
    }


.circle-wrapper{
  width: 320px;
  height: 320px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}



    .center-logo img {
        max-width: 200px;
       /* left:52%; */
       margin-left: 10px;
    }

    .orbit-item {
        font-size: 15px;
        letter-spacing: 1.6px;
        z-index: 20;
        position: absolute;
    }

   .item1 { top: -15px; left: 45%; transform: rotate(60deg); }
.item2 { bottom: 7px; left: 37%; transform: translateY(-50%); }
.item3 { top: 38%; right: 24px;  transform:rotate(60deg); }
.item4 { bottom: 25px; right: -53px; transform: translateX(-50%); }
.item5 { top: 204px; left: 75%; transform: rotate(60deg); }
.item6 { bottom: 32px; left: 40px; transform: translateX(-50%); }
.item7 { top: 75%; left: -11px; transform: translateY(-50%) rotate(-60deg); }
.item8 { top: 25px; left: 64px; transform: rotate(-60deg); }
.item9 { top: 135px; left: 3px; transform: rotate(-60deg); }
.item10 { top: 57px; left: 57%; transform: rotate(60deg); }
}


/* =====================================================
   GALLERY SECTIONS
===================================================== */
.gallery-section {
    margin-top: 70px;
}

.gallery-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;

    background: linear-gradient(
        180deg,
        var(--gold-light),
        var(--gold-main),
        var(--gold-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 2px 6px rgba(0,0,0,0.6),
        0 0 14px var(--gold-glow);
}

.gallery-subtitle {
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 26px;
}

/* =====================================================
   GALLERY GRID
===================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(0,0,0,0.35);
    box-shadow: 0 8px 22px rgba(0,0,0,0.6);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-title {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   IMAGE LIGHTBOX
===================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    box-shadow: 0 0 40px rgba(199,164,2,0.35);
    animation: zoomIn 0.35s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 38px;
    font-weight: bold;
    color: #c7a402;
    cursor: pointer;
    text-shadow: 0 0 12px rgba(199,164,2,0.5);
}

.filmography img{
    width: 100%;
    height: auto;
    padding: 5px;
}
.header-logo img{
    max-width: 180px;
}

  /* ===== TEAM SECTION ===== */
.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.team-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
      width: 140px;
    height: 190px;
    object-fit: cover;
    border-radius: 30%;
    margin-bottom: 15px;
    border: 3px solid #1b71a1;
}

.team-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.team-card p {
    font-size: 14px;
    opacity: 0.8;
}
