:root {
    /* Colors */
    --fayzelt-emerald-darker: #132f1e;
    --fayzelt-emerald: #004F3B;
    --fayzelt-gold: #D08700;
    --fayzelt-burgundy: #800020;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*cursor: none;*/
}
body {
    font-family: 'Helvetica Neue', 'Inter', sans-serif;
    background: #0a0a0a;
    color: white;
    overflow-x: hidden;
}
/* GRAIN */
.grain {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("./../assets/images/grain.jpg");
    opacity: 0.05;
    pointer-events: none;
    z-index: 999;
}
/* CUSTOM CURSOR */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: transform 0.1s ease;
    z-index: 1000;
}
/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: radial-gradient(circle at center,
        var(--fayzelt-gold) 0%,
        var(--fayzelt-emerald),
        var(--fayzelt-emerald-darker)
    );,
}
.hero-content {
    text-align: center;
}
/* SVG LOGO */
.logo-svg {
    width: 100%;
    margin: auto auto -100px;
}
.logo-svg svg{
    width: 100%;
}
.logo-svg path {
    stroke: navajowhite;
    stroke-width: 0.5;
    /*fill: none;*/
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}
/* TEXT */
#title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    letter-spacing: 20px;
}
.tagline {
    opacity: 0.7;
    margin-top: 10px;
}
/* SERVICES */
.services {
    display: flex;
    height: 50vh;
}
.card {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    position: relative;
}
.card:hover {
    flex: 1.2;
}
.essentials:hover .overlay,
.it:hover .overlay,
.events:hover .overlay {
    opacity: 0.3;
    transition: 0.3s ease;
    background: black;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
}

.it .disabled,
.events .disabled {
    opacity: 0.7;
    transition: 0.3s ease;
    background: black;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

/* COLORS for service cards */
.essentials { background: var(--fayzelt-burgundy); }
.it { background: var(--fayzelt-emerald); }
.events { background: var(--fayzelt-gold); }
/* CARD CONTENT */
.card-content {
    text-align: center;
    transform: translateY(40px);
    opacity: 0;
    padding: 16px 8px;
}
.service-name {
    font-family: 'Playfair Display', serif;
}
.service-info {
    margin: 10px 0 20px 0;
}
button {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: 0.3s;
}
button:hover {
    background: white;
    color: black;
}
/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    opacity: 0.6;
}