@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans_18pt-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans_18pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans_18pt-Black.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans_18pt-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Averia Serif Libre';
    src: url('../fonts/AveriaSerifLibre-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Averia Serif Libre';
    src: url('../fonts/AveriaSerifLibre-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {
    --clr-lilac: #D4BEE4;
    --clr-lilac-dark: #8E6E99;
    --clr-lilac-deep: #714288;
    --clr-pumpkin: #F5A623;
    --clr-blue: #7C93C3;
    --clr-blue-light: #9aa9cc;
    --clr-white: #FFFFFF;
    --clr-dark: #2D2D2D;
    --clr-dark-footer: #4A3B4E;
    --clr-neutral: #F9F7F7;
    --clr-text-muted: #6A5B6E;
    --clr-glass: rgba(255, 255, 255, 0.7);
    --clr-header-btn: rgb(160 144 171 / 87%);

    --ff-body: 'DM Sans', sans-serif;
    --ff-heading: 'Averia Serif Libre', serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ff-body);
    color: var(--clr-dark);
    background-color: var(--clr-neutral);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--ff-heading);
    color: var(--clr-dark);
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--clr-lilac-dark);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(113, 66, 136, 0.2);
}

.btn-primary:hover {
    background-color: var(--clr-lilac-deep);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 147, 195, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--clr-lilac);
    color: var(--clr-dark);
}

.btn-secondary:hover {
    background-color: var(--clr-lilac);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 0;
    background-color: var(--clr-header-btn);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 85px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    color: var(--clr-white);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--clr-lilac-deep);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--clr-white);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        margin-bottom: 0.5rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--clr-white);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav.open {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links a {
        color: var(--clr-dark);
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 60px;
        /* Resize logo to prevent cropping on small screens */
    }
}

/* Footer */
.footer {
    padding: 3rem 1.5rem 1.5rem;
    background-color: var(--clr-dark-footer);
    color: var(--clr-white);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3,
.footer h4 {
    color: var(--clr-lilac);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links ul li {
    margin-bottom: 0.4rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--clr-lilac);
    padding-left: 5px;
}

.footer-hours p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-item:hover {
    color: var(--clr-lilac);
    padding-left: 5px;
}

.social-icon {
    display: none;
    /* Removing SVG based icon */
}

/* CSS-Only Icons */
.icon-info,
.icon-instagram {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

/* Info Icon Styling */
.icon-info {
    width: 16px;
    height: 16px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.icon-info::before {
    content: '';
    position: absolute;
    width: 1.5px;
    height: 5px;
    background: currentColor;
    left: 50%;
    top: 60%;
    transform: translateX(-50%);
}

.icon-info::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: currentColor;
    border-radius: 50%;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
}

/* Instagram Icon Styling */
.icon-instagram {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 5px;
}

.icon-instagram::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.icon-instagram::after {
    content: '';
    position: absolute;
    width: 1.5px;
    height: 1.5px;
    background: currentColor;
    border-radius: 50%;
    top: 2px;
    right: 2px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-container {
        gap: 1.5rem;
    }
}

/* Shared Animation Reveal Classes */
.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.visible,
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}