/* ----------------------------------------
   BEA DIGITAL — PREMIUM MATTE BLACK + GOLD THEME
----------------------------------------- */

:root {
    --black: #000;
    --offblack: #0a0a0a;
    --matte: #0a0a0a;
    --gold: #d4af37;
    --white: #fff;
    --gray: #b5b5b5;
    --fade-speed: 0.6s;
}

body {
    margin: 0;
    background: var(--offblack);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    opacity: 0;
    animation: fadeIn var(--fade-speed) ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------
   GLOBAL LAYOUT
----------------------------------------- */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

h1, h2, h3 {
    letter-spacing: 0.5px;
}

/* ----------------------------------------
   HEADER NAV
----------------------------------------- */

.header {
    background: var(--matte);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #111;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

.nav a {
    margin-left: 22px;
    color: var(--gray);
    text-decoration: none;
    font-size: 1rem;
    transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
}

/* ----------------------------------------
   HERO SECTION — CLEAN + LARGE
----------------------------------------- */

.hero {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.hero img.hero-image {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
}

.hero-content {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 750px;
}

.hero-content h1 {
    font-size: 3.6rem;
    color: var(--gold);
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 28px;
}

.primary-btn {
    background: var(--gold);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.25s ease;
}

.primary-btn:hover {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

/* ----------------------------------------
   SECTIONS
----------------------------------------- */

section {
    padding: 80px 0;
}

h2 {
    font-size: 2.6rem;
    margin-bottom: 45px;
    color: var(--gold);
}

/* ----------------------------------------
   SERVICES GRID
----------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--black);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: 0.25s ease;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 0 14px rgba(212,175,55,0.35);
}

.service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 18px;
}

/* ----------------------------------------
   PACKAGES
----------------------------------------- */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.package-card {
    background: var(--black);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: 0.25s;
}

.package-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.package-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.package-card .price {
    font-size: 2rem;
    margin: 18px 0;
    color: var(--gold);
}

.secondary-btn {
    background: var(--gold);
    color: var(--black);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.secondary-btn:hover {
    opacity: 0.8;
}

/* ----------------------------------------
   PORTFOLIO — RESTORE CLEAN CARDS
----------------------------------------- */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: var(--black);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: 0.25s;
}

.portfolio-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.portfolio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.portfolio-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

/* ----------------------------------------
   FOOTER
----------------------------------------- */

.footer {
    background: #050505;
    padding: 45px 0;
    border-top: 1px solid #111;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
}

.footer-links a {
    margin-left: 18px;
    text-decoration: none;
    color: var(--gray);
}

.footer-links a:hover {
    color: var(--gold);
}

/* ----------------------------------------
   RESPONSIVE
----------------------------------------- */

@media (max-width: 900px) {
    .nav { display: none; }
    .mobile-toggle { display: block; }

    .hero img.hero-image {
        height: 420px;
        object-fit: cover;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
