:root {
    --accent: #53E3D4;
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #f4f4f4;
    --dark-gray: #666;
}

html {
    scroll-behavior: smooth;
}

h2 {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 25px;
    position: relative;
}

section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--accent);
    margin: 25px auto 0;
    border-radius: 2px;
}



.logo {
    text-decoration: none;
    color: var(--black);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: var(--white);
    color: var(--black);
    line-height: 1.7;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= NAVBAR ================= */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #dedcdc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 26px;
    background: var(--black);
    margin: 4px 0;
    border-radius: 2px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fbfbfb 60%,
        #f5f5f5 100%
    );
}


/* Dark overlay for contrast */
.hero {
    position: relative;  
    overflow: hidden;
    background: 
linear-gradient(rgba(111, 104, 104, 0.1),rgba(61, 59, 59, 0.1)),
url('/images/hero-image-2.jpg') center/cover;
}

.hero-content {
    position: relative;
    z-index: 3;           
}


.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #ffffff;
    line-height: 1.05;   /* ⬅ tighter */
}


.hero p {
    margin: 25px 0 45px;
    font-size: 1.15rem;
    color: #444;
    max-width: 520px;
}

.hero-tagline {
    margin: 28px 0 44px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.hero-content {
    animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-ambient,
    .hero-content {
        animation: none;
    }
}


.tagline-text {
    position: relative;
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    color: var(--black);

    padding: 12px 30px;       /* ⬅ smaller */
    font-size: 0.95rem;       /* ⬅ slightly smaller text */
    font-weight: 600;

    border-radius: 999px;
    text-decoration: none;

    transition: all 0.3s ease;
}


.btn-primary:hover {
    background: var(--accent);
    color: var(--black);
    box-shadow: 0 2px 28px rgba(83, 227, 212, 0.3);
}



/* ================= SECTIONS ================= */
section {
    padding: 100px 0;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

section p {
    max-width: 750px;
    margin: auto;
    text-align: center;
    color: var(--dark-gray);
}

/* ================= IMAGE BREAK ================= */
.image-section {
    height: 320px;
    background: linear-gradient(
            rgba(0,0,0,0.4),
            rgba(0,0,0,0.4)
        ),
        url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f")
        center/cover no-repeat;
}

/* ================= SERVICES ================= */
.services {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f7f7f7 100%
    );
}

.services-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔑 3x3 on desktop */
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.services h2 {
    margin-bottom: 15px;
}

.services > .container > p {
    margin-top: 15px;
    font-size: 1.1rem;
}

.service-card p {
    text-align: left;
    margin: 0;
}

.service-card button {
    margin-top: 25px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--black);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-cta {
    padding: 120px 0;
    text-align: center; /* centers text */
}

.services-cta .btn-primary {
    display: inline-flex;   /* ensures proper sizing */
    margin: 0 auto;         /* 🔑 centers the button */
}


.services-cta p {
    margin: 20px auto 40px;
    color: rgba(0,0,0,0.6);
}

.service-link {
    display: inline-block;
    margin-top: 18px;

    font-weight: 600;
    text-decoration: none;
    color: var(--black);

    position: relative;
}

.service-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: scaleX(1);
}

.service-card button:hover {
    background: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* ================= ORDER MODAL ================= */

.order-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

.order-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
}


/* ================= TESTIMONIALS ================= */
.testimonials {
    background: var(--black);
    color: var(--white);
}

.testimonials h2 {
    color: var(--white);
}

.testimonial-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #111;
    padding: 35px;
    border-radius: 14px;
}

.testimonial-card p {
    color: #ddd;
    text-align: left;
}

.testimonial-card span {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--accent);
}

/* ================= CONTACT ================= */
.contact-form {
    margin-top: 50px;
    max-width: 600px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 18px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.contact-form button {
    padding: 14px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: var(--accent);
    color: var(--black);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--white);
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .nav-links a {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent);
}

/* Brand column */
.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
}

.footer-logo span {
    color: var(--accent);
}

.footer-text {
    margin: 20px 0;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-copy {
    color: #919090;
    font-size: 0.85rem;
}

/* Discord block */
.footer-discord .discord-link {
    display: flex;
    align-items: center;        /* vertical centering */
    gap: 14px;

    padding: 16px 18px;
    border-radius: 14px;
    background: #111;
    color: var(--white);
    text-decoration: none;

    line-height: 1;             /* 🔑 fixes vertical offset */
    transition: all 0.3s ease;
}


.footer-discord .discord-link svg {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-discord .discord-link span {
    line-height: 1.3;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-discord .discord-link small {
    color: #aaa;
    font-size: 0.8rem;
}

.footer-discord .discord-link:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(83, 227, 212, 0.25);
}

.discord-icon {
    width: 22px;
    height: 22px;

    background: transparent !important; 
    fill: currentColor;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


