:root {
    --primary: #171c1e;
    --secondary: #3c3e3c;
    --accent: #ea6719;
    --accent-light: #f5a942;
    --text: #eadac3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--primary);
    color: var(--text);
    font-family: "Gothic A1", sans-serif;
    line-height: 1.6;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: center;

    background: rgba(23, 28, 30, 0.96);

    z-index: 1000;
}

.nav-inner {
    width: 100%;
    max-width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1.5rem 5%;

    background: transparent;
    border-radius: 0;
}

.logo img {
    height: 70px;
    display: block;

    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;

    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(23, 28, 30, 0.65);

    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.tagline {
    font-family: "Lexend", sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;

    max-width: 700px;
}

.cta-button {
    display: inline-block;

    background: var(--accent);

    color: white;
    text-decoration: none;

    padding: 14px 28px;
    border-radius: 8px;

    transition: 0.3s;
}

.cta-button:hover {
    background: var(--accent-light);
}

.intro,
.services,
.contact {
    padding: 100px 10%;
}

.intro h2,
.services h2,
.contact h2 {
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 2rem;

    margin-top: 2rem;
}

.service-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 12px;
}

.contact-info p {
    margin: 1rem 0;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #111;
}

.packages {
    min-height: 100vh;

    padding: 120px 8%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background: var(--primary);
}

.packages h2 {
    text-align: center;
    margin-bottom: 4rem;

    color: var(--accent-light);

    font-size: 2.5rem;
}

.package-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 2rem;

    align-items: stretch;
}

.package-card {
    background: var(--secondary);

    padding: 2.5rem;

    border-radius: 18px;

    position: relative;

    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card h3 {
    color: var(--accent-light);

    margin-bottom: 1.5rem;

    font-size: 1.5rem;
}

.package-card ul {
    list-style: none;
}

.package-card li {
    margin-bottom: 0.75rem;

    padding-left: 1rem;

    position: relative;
}

.package-card li::before {
    content: "•";

    color: var(--accent);

    position: absolute;
    left: 0;
}

.featured {
    border: 2px solid var(--accent);

    transform: scale(1.03);
}

.featured-badge {
    position: absolute;

    top: -15px;
    right: 20px;

    background: var(--accent);

    color: white;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 0.85rem;

    font-weight: 600;
}

.contact {
    min-height: 100vh;

    padding: 120px 10%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--primary);
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;

    color: var(--accent-light);
    font-size: 2.5rem;
}

.contact-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.contact-form {
    max-width: 800px;
    width: 100%;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 1rem 1.1rem;

    background: var(--secondary);
    color: var(--text);

    border: 1px solid rgba(234, 218, 195, 0.18);
    border-radius: 10px;

    font-family: "Lexend", sans-serif;
    font-size: 1rem;

    outline: none;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(234, 218, 195, 0.55);
}

.contact-form select {
    cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.form-button {
    align-self: center;

    margin-top: 1rem;

    padding: 14px 32px;

    background: var(--accent);
    color: white;

    border: none;
    border-radius: 999px;

    font-family: "Lexend", sans-serif;
    font-size: 1rem;

    cursor: pointer;

    transition: 0.3s ease;
}

.form-label {
    display: block;

    margin-bottom: -0.4rem;

    font-family: "Lexend", sans-serif;
    font-weight: 600;

    color: var(--text);
}

.form-button:hover {
    background: var(--accent-light);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;

    padding: 2rem 5%;

    background: #111;
    color: var(--text);

    flex-wrap: wrap;
}

.footer-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link,
.footer-instagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    color: var(--text);
    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-link:visited,
.footer-instagram:visited {
    color: var(--text);
}

.footer-link:hover,
.footer-instagram:hover {
    color: var(--accent);
}

.footer-link:active,
.footer-instagram:active {
    color: var(--accent);
}

.footer-instagram:hover {
    color: var(--accent);
}

.footer-instagram svg {
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
}

/* Phone layout */
@media (max-width: 768px) {

    .navbar {
        top: 14px;
        left: 50%;
        width: 92vw;
        transform: translateX(-50%);
        background: transparent;
    }

    .nav-inner {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;

        padding: 1rem 1.2rem;

        background: rgba(23, 28, 30, 0.98);
        border-radius: 28px;

        overflow: hidden;
    }

    .logo img {
        height: 50px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        width: 44px;
        height: 44px;

        background: transparent;
        border: none;
        cursor: pointer;

        z-index: 1001;
    }

    .menu-toggle span {
        width: 26px;
        height: 2px;

        background: var(--text);
        border-radius: 999px;

        transition: transform 0.35s ease, opacity 0.25s ease;
    }

    .nav-links {
        width: 100%;

        display: flex;
        flex-direction: column;
        gap: 0;

        max-height: 0;
        opacity: 0;

        overflow: hidden;
        pointer-events: none;

        transition:
            max-height 0.45s ease,
            opacity 0.35s ease,
            margin-top 0.35s ease;
    }

    .nav-links.active {
        max-height: 260px;
        opacity: 1;

        margin-top: 1rem;

        pointer-events: auto;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        display: block;

        padding: 0.9rem 0.25rem;

        font-size: 1rem;
        text-align: center;

        border-top: 1px solid rgba(234, 218, 195, 0.14);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .intro,
    .services,
    .contact,
    .packages {
        padding: 80px 6%;
    }

    .service-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 2rem;
    }

    .featured {
        transform: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .site-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 0.75rem;
    }
}
