:root {
    --pink: #F9C8D0;
    --beige: #F3E5D8;
    --blue: #1F1E3E;
    --gold: #D4AF37;
    --white: #FFFFFF;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--blue);
    line-height: 1.6;
    background: var(--beige);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) 0;
}

button, .btn {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all var(--transition-fast);
    text-align: center;
}

button:hover, .btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline {
    background: var(--pink);
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.section {
    padding: var(--space-lg) 0;
    position: relative;
}

.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(249, 200, 208, 0.3);
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(even) {
    background: rgba(212, 175, 55, 0.2);
    animation-duration: 25s;
}

.particle:nth-child(3n) {
    background: rgba(31, 30, 62, 0.1);
    animation-duration: 20s;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x, 100px), var(--y, 100px)) rotate(360deg);
        opacity: 0;
    }
}

header {
    position: relative;
    width: 100%;
    z-index: 100;
    transition: transform var(--transition-medium);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
}

.logo-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: var(--blue);
    border-radius: 50%;
    margin-right: var(--space-xs);
    position: relative;
}

.logo-icon:before, .logo-icon:after {
    content: "";
    position: absolute;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-icon:before {
    width: 60%;
    height: 2px;
}

.logo-icon:after {
    width: 2px;
    height: 60%;
}

.header-shrink {
    transform: translateY(-100%);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--blue);
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.nav-toggle span:nth-child(1) {
    top: 8px;
}

.nav-toggle span:nth-child(2) {
    top: 14px;
}

.nav-toggle span:nth-child(3) {
    top: 20px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: var(--space-md);
}

nav ul li a {
    position: relative;
    font-weight: 500;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-fast);
}

nav ul li a:hover:after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(243, 229, 216, 0.7), rgba(249, 200, 208, 0.7)), url("../img/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 0;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(31, 30, 62, 0.15) 0%, transparent 60%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.3s;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.5s;
}

.hero .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services {
    background: linear-gradient(to bottom, var(--beige), rgba(243, 229, 216, 0.5));
    position: relative;
}

.services:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 70% 20%, rgba(249, 200, 208, 0.3) 0%, transparent 40%),
            radial-gradient(circle at 30% 80%, rgba(31, 30, 62, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: var(--space-xs) auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--blue);
}

.about {
    background: linear-gradient(to bottom, rgba(243, 229, 216, 0.5), rgba(249, 200, 208, 0.2));
    position: relative;
}

.about:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(31, 30, 62, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-image img {
    transition: transform var(--transition-slow);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image:hover img {
    transform: scale(1.05);
}

.gallery {
    padding: var(--space-xl) 0;
    background: linear-gradient(to bottom, rgba(249, 200, 208, 0.2), rgba(243, 229, 216, 0.5));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 30, 62, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: var(--white);
    text-align: center;
    padding: var(--space-sm);
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.testimonials {
    background: linear-gradient(to bottom, rgba(243, 229, 216, 0.5), rgba(243, 229, 216, 0.8));
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%, rgba(249, 200, 208, 0.3) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.testimonials-slider {
    position: relative;
    z-index: 1;
    padding: var(--space-md) 0;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 0 var(--space-sm);
    position: relative;
}

.testimonial-item:before {
    content: '"';
    font-family: var(--font-heading);
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 5rem;
    color: var(--pink);
    opacity: 0.5;
}

.testimonial-content {
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: var(--space-sm);
}

.testimonial-author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

.contact {
    background: linear-gradient(to bottom, rgba(243, 229, 216, 0.8), rgba(249, 200, 208, 0.3));
    position: relative;
    overflow: hidden;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 70% 20%, rgba(31, 30, 62, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 30% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 40%);
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: var(--space-sm);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-info-content h4 {
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.contact-info-content p {
    margin-bottom: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    margin-right: var(--space-xs);
    margin-top: 5px;
}

.form-check-label {
    font-size: 0.9rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

footer {
    background: var(--blue);
    color: var(--white);
    padding: var(--space-md) 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.footer-logo {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-links h4 {
    margin-bottom: var(--space-sm);
    color: var(--gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: var(--space-xs);
}

.footer-links ul li a {
    color: var(--white);
    transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--pink);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--blue);
    color: var(--white);
    padding: var(--space-md);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    margin-right: var(--space-md);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.page-header {
    position: relative;
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, rgba(243, 229, 216, 0.7), rgba(249, 200, 208, 0.7));
    text-align: center;
    margin-bottom: var(--space-lg);
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(31, 30, 62, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.breadcrumbs a {
    color: var(--blue);
}

.breadcrumbs span {
    margin: 0 var(--space-xs);
}

.packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.package-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-header {
    background: var(--blue);
    color: var(--white);
    padding: var(--space-md);
    text-align: center;
}

.package-header h3 {
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0;
}

.package-body {
    padding: var(--space-md);
}

.package-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.package-features li {
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-footer {
    padding: 0 var(--space-md) var(--space-md);
    text-align: center;
}

.error-page {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(243, 229, 216, 0.5), rgba(249, 200, 208, 0.2));
    position: relative;
    overflow: hidden;
}

.error-page:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(31, 30, 62, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.error-content {
    position: relative;
    z-index: 1;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.error-404 {
    font-size: 8rem;
    line-height: 1;
    color: var(--pink);
    margin-bottom: var(--space-sm);
}

.thank-you {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(243, 229, 216, 0.5), rgba(249, 200, 208, 0.2));
    position: relative;
    overflow: hidden;
}

.thank-you:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(31, 30, 62, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.thank-you-content {
    position: relative;
    z-index: 1;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.legal-page {
    background: linear-gradient(to bottom, rgba(243, 229, 216, 0.5), rgba(249, 200, 208, 0.2));
    position: relative;
}

.legal-page:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(31, 30, 62, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.legal-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-content h2, .legal-content h3 {
    margin-top: var(--space-lg);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content ul, .legal-content ol {
    margin-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.legal-content li {
    margin-bottom: var(--space-xs);
}

.home-button {
    display: inline-flex;
    align-items: center;
    margin-top: var(--space-md);
}

.home-button:before {
    content: '←';
    margin-right: var(--space-xs);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .about-content, .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .legal-content li{
        font-size: 0.7rem;
    }

    .legal-content h2{
        font-size: 1.4rem;
    }

    p{
        font-size: 0.8rem;
    }

    .contact-info-content p{
        font-size: 0.8rem;
    }

    .contact-container{
        display: flex;
        flex-direction: column;
    }

    .hero h1{
        font-size: 3rem;
    }

    .logo{
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        display: none;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        z-index: 100;
        transition: right var(--transition-medium);
        box-shadow: var(--shadow-lg);
    }

    nav.active {
        right: 0;
        display: flex;
    }

    nav ul {
        flex-direction: column;
        padding: var(--space-lg) var(--space-md);
    }

    nav ul li {
        margin: 0 0 var(--space-md) 0;
    }
}

@media (max-width: 480px) {
    .logo{
        font-size: 1rem;
    }

    .error-404{
        font-size: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookie-consent {
        flex-direction: column;
    }

    .cookie-text {
        margin-right: 0;
        margin-bottom: var(--space-sm);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, var(--blue) 0%, var(--pink) 20%, var(--beige) 40%, var(--beige) 100%);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite linear;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.fluid-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
}

.fluid-animation path {
    fill: none;
    stroke: var(--pink);
    stroke-width: 1;
    stroke-linecap: round;
    animation: fluidPath 20s infinite alternate;
}

.fluid-animation path:nth-child(2) {
    stroke: var(--gold);
    animation-duration: 25s;
    animation-delay: 2s;
}

.fluid-animation path:nth-child(3) {
    stroke: var(--blue);
    animation-duration: 30s;
    animation-delay: 1s;
}

@keyframes fluidPath {
    0%, 100% {
        d: path("M0,50 C150,100 350,0 500,50 C650,100 850,0 1000,50");
    }
    50% {
        d: path("M0,50 C150,0 350,100 500,50 C650,0 850,100 1000,50");
    }
}

.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.ripple-btn:focus:after {
    animation: ripple 1s;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.nav-open{
    overflow: hidden;
}