/* GLOBAL SETTINGS */
:root {
    --bg-color: #050505;
    --card-bg: #121212;
    --gold: #FFD700;
    --gold-gradient: linear-gradient(45deg, #FFD700, #FDB931);
    --text-color: #ffffff;
    --gray: #b3b3b3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.gold { color: var(--gold); }
a { text-decoration: none; }

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0,0,0,0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { color: white; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1621619856624-42fd193a0661?q=80&w=2058&auto=format&fit=crop') center/cover;
    position: relative;
}
.overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.7); }
.hero-content { position: relative; z-index: 2; padding: 20px; }

.hero h1 { font-size: 4rem; line-height: 1.1; margin: 10px 0; }
.hero h4 { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.gold-text { color: var(--gold); }

.cta-group { margin-top: 30px; }
.btn-primary {
    background: var(--gold-gradient);
    color: black;
    padding: 15px 30px;
    font-weight: 800;
    border-radius: 5px;
    margin-right: 10px;
}
.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 13px 30px;
    font-weight: 700;
    border-radius: 5px;
}

/* PACKAGE SECTION */
.package-section { padding: 80px 20px; text-align: center; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-header p { color: var(--gray); margin-bottom: 50px; }

.card-container { display: flex; justify-content: center; }
.premium-card {
    background: var(--card-bg);
    border: 1px solid #333;
    width: 100%;
    max-width: 600px; /* Wide card like Jovial */
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    transition: transform 0.3s;
}
.premium-card:hover { transform: translateY(-5px); border-color: var(--gold); }

.ribbon {
    position: absolute; top: 20px; right: -35px;
    background: #ff0000; color: white; transform: rotate(45deg);
    padding: 5px 40px; font-size: 0.8rem; font-weight: bold;
}

.card-top {
    background: #1a1a1a; padding: 30px; border-bottom: 1px solid #333;
}
.price-tag { font-size: 3.5rem; font-family: 'Oswald'; color: var(--gold); font-weight: 700; }
.currency { font-size: 2rem; vertical-align: super; }
.cut-price { font-size: 1.2rem; color: #666; text-decoration: line-through; margin-left: 10px; }

.card-details { padding: 30px; text-align: left; }
.detail-box { display: flex; margin-bottom: 25px; }
.icon-gold { color: var(--gold); font-size: 1.5rem; margin-right: 20px; margin-top: 5px; width: 30px; }
.detail-box h4 { color: white; margin-bottom: 5px; }
.detail-box p { color: #ccc; font-size: 0.9rem; margin-bottom: 3px; }

.bonus-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px dashed var(--gold);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}
.bonus-box h4 { color: var(--gold); margin-bottom: 10px; }
.bonus-box ul { list-style: none; }
.bonus-box li { color: #eee; margin-bottom: 5px; font-size: 0.9rem; }

.terms { font-size: 0.8rem; color: #777; padding: 0 30px 20px; text-align: center; }
.btn-full {
    display: block; width: 100%; background: var(--gold); color: black;
    padding: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}

/* PORTFOLIO */
.portfolio { padding: 60px 5%; background: #0a0a0a; text-align: center; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item { position: relative; cursor: pointer; overflow: hidden; border-radius: 10px; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: 0.5s; opacity: 0.7; }
.play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 3rem; color: white; opacity: 0.8;
}
.gallery-item:hover img { opacity: 1; transform: scale(1.1); }

/* FOOTER & SOCIALS */
footer { padding: 60px 20px; background: #000; text-align: center; border-top: 1px solid #222; }
.footer-container h3 { font-size: 2rem; color: white; }

.social-icons { margin: 30px 0; display: flex; justify-content: center; gap: 15px; }
.social-btn {
    width: 50px; height: 50px; background: #222; color: white;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 1.2rem; transition: 0.3s;
}
.social-btn:hover { transform: translateY(-5px); background: var(--gold); color: black; }

/* Colors for specific brands on hover */
.instagram:hover { background: #e1306c; color: white; }
.youtube:hover { background: #ff0000; color: white; }
.linkedin:hover { background: #0077b5; color: white; }
.facebook:hover { background: #1877f2; color: white; }

.whatsapp-float {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        position: absolute; right: 0; top: 60px;
        background: #111; flex-direction: column; width: 60%;
        padding: 30px; display: none; height: 100vh;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; color: white; }
    .hero h1 { font-size: 2.2rem; }
    .premium-card { margin: 0 10px; }
    .cta-group { display: flex; flex-direction: column; gap: 15px; }
    .btn-primary, .btn-secondary { width: 100%; margin: 0; }
}