@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #050B1A;
    --bg-secondary: #071A42;
    --card: #17233D;
    --gold: #D4AF37;
    --gold-light: #F1DDA6;
    --gold-deep: #A6791F;
    --text: #F8FAFC;
    --text-secondary: #C9D3E4;
    --glass-bg: rgba(23, 35, 61, 0.55);
    --glass-border: rgba(212, 175, 55, 0.32);
    --glass-blur: 24px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --shadow-gold: 0 14px 38px rgba(212, 175, 55, 0.26), 0 2px 10px rgba(212, 175, 55, 0.14);
    --shadow-gold-strong: 0 20px 54px rgba(212, 175, 55, 0.38), 0 4px 18px rgba(212, 175, 55, 0.26);
    --transition-fast: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-med: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --gradient-gold: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold) 45%, var(--gold-light) 75%, var(--gold) 100%);
    --font-main: 'Poppins', 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', 'Poppins', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at 20% 0%, var(--bg-secondary) 0%, var(--bg) 55%, #04070F 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

::selection {
    background: var(--gold);
    color: var(--bg);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold), var(--gold-light));
    border-radius: 10px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 26, 66, 0.82);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
}

#logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

#logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
    transition: box-shadow var(--transition-med), transform var(--transition-med);
}

#logo:hover img {
    box-shadow: var(--shadow-gold-strong);
    transform: rotate(6deg);
}

#logo h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 14px rgba(212, 175, 55, 0.25);
}

#logo h4 {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    font-weight: 500;
}

#logo h4 span {
    color: var(--gold);
}

#cnav ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

#cnav ul li a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

#cnav ul li a:hover,
#cnav ul li a.nav {
    color: var(--bg);
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

#menu {
    display: none;
}

.menu-btn {
    display: none;
    font-size: 1.6rem;
    color: var(--gold-light);
    cursor: pointer;
    z-index: 210;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid rgba(212, 175, 55, 0.23);
    box-shadow: var(--shadow-soft);
    z-index: 9999;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: right var(--transition-med);
}

#menu:checked~.sidebar {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
}

.sidebar-logo h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.sidebar-logo h4 {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.sidebar-logo h4 span {
    color: var(--gold);
}

.close-btn {
    font-size: 1.4rem;
    color: var(--gold-light);
    cursor: pointer;
}

.sidebar a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.sidebar a:hover,
.sidebar a.nav {
    color: var(--bg);
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
    transform: translateX(4px);
}

main {
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--gold-deep), var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, var(--gold-deep));
    background-size: 220% auto;
    background-position: left center;
    color: #1B1203;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    box-shadow: var(--shadow-gold);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-position var(--transition-med);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    background-position: right center;
    box-shadow: var(--shadow-gold-strong);
}

#footer {
    position: relative;
    z-index: 1;
    background: rgba(7, 26, 66, 0.68);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    padding: 60px 40px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: var(--shadow-gold);
}

.footer-logo h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-shadow: 0 2px 18px rgba(212, 175, 55, 0.25);
}

.footer-logo h2 span {
    color: var(--text);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

.footer-logo h4 {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 6px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--gold-light);
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(6px);
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

#footer hr {
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    max-width: 1200px;
    margin: 30px auto 20px;
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

@media (max-width: 1088px) {
    #cnav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    header {
        padding: 12px 18px;
    }

    #logo img {
        width: 40px;
        height: 40px;
    }

    #footer {
        padding: 40px 20px 24px;
    }
}

main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px 0;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;

    overflow-y: auto;
    overflow-x: hidden;

    height: 60vh;

    padding: 20px;
    scroll-behavior: smooth;
}

.gallery::-webkit-scrollbar {
    width: 10px;
}

.gallery::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 20px;
}

.gallery div {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery div img {
    width: 45%;
    max-width: 450px;
    height: auto;

    border-radius: 18px;
}

.gallery div img {
    transition: .3s;
    cursor: pointer;
}

.gallery div img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 18, 0.93);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 300;
    cursor: zoom-out;
}

#lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.34);
}

#sual {
    margin-bottom: 70px;
}

#tez {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--gold-light);
    margin-bottom: 28px;
    font-weight: 700;
    text-shadow: 0 2px 18px rgba(212, 175, 55, 0.22);
}

details {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    padding: 20px 26px;
    box-shadow: var(--shadow-soft);
    transition: border-color var(--transition-fast);
}

details[open] {
    border-color: rgba(212, 175, 55, 0.5);
}

summary {
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    position: relative;
    padding-right: 30px;
    transition: color var(--transition-fast);
}

details[open] summary {
    color: var(--gold-light);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: -2px;
    color: var(--gold);
    font-size: 1.4rem;
    transition: transform var(--transition-fast);
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}

#packages {
    margin-bottom: 70px;
    text-align: center;
}

#packages h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--gold-light);
    margin-bottom: 36px;
    font-weight: 700;
    text-shadow: 0 2px 18px rgba(212, 175, 55, 0.22);
}

.package-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.package {
    padding: 32px 16px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-fast);
}

.package:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: var(--shadow-gold-strong);
}

.package h3 {
    color: var(--gold-light);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.package p {
    color: var(--text);
    font-weight: 700;
    font-size: 1.05rem;
}

#download {
    text-align: center;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 60px;
}

#download h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    color: var(--gold-light);
    margin-bottom: 14px;
    font-weight: 700;
    text-shadow: 0 2px 18px rgba(212, 175, 55, 0.22);
}

#download p {
    color: var(--text-secondary);
    margin-bottom: 26px;
    font-size: 0.95rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    background: var(--gradient-gold);
    background-size: 220% auto;
    background-position: left center;
    color: #1B1203;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-position var(--transition-med);
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background-position: right center;
    box-shadow: var(--shadow-gold-strong);
}

@media (max-width: 960px) {
    main {
        padding: 40px 24px 0;
    }

    .gallery>div {
        grid-template-columns: 1fr;
    }

    .gallery img {
        height: 260px;
    }

    .package-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery div {
        display: contents;
    }

    .gallery div img {
        width: 100%;
        height: auto;
        aspect-ratio: 210/297;
        object-fit: cover;
        border-radius: 18px;
    }

}

@media (max-width: 640px) {
    details {
        padding: 16px 18px;
    }

    .package-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

html,
body {
    overflow-x: hidden;
}
