/* Variables (als commentaar voor referentie) */


/* 
  primary-color: #2d4739
  secondary-color: #f8f5f1
  accent-color: #e88d2a
  text-color: #23402a
  white: #fff
  box-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08)
  box-shadow-md: 0 4px 20px rgba(45, 71, 57, 0.1)
  border-radius-sm: 8px
  border-radius-md: 16px
  border-radius-lg: 24px
  transition-short: 0.2s ease
  transition-medium: 0.3s ease
  container-max-width: 1200px
  content-max-width: 1000px
*/


/* Monochrome kleurenschema - nieuw palet */

:root {
    --light-cream: #FCF5F4;
    --deep-navy: #1E1941;
    --soft-lavender: #B9B6C3;
    --warm-taupe: #A58E6F;
    --white: #fff;
    --black: #1a1a1a;
    --overlay-dark: rgba(30, 25, 65, 0.5);
    /* Added for enhanced footer icons */
    --primary-color: #A58E6F;
    --primary-rgb: 165, 142, 111;
    --light-blue: #B9B6C3;
    --medium-blue: #1E1941;
    --medium-gray: #757575;
    --ultra-light-blue: #f5f8ff;
    --lightest-blue: #f8faff;
    --header-height: 80px;
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --radius: 5px;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Reset & Base Styles */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Coves', sans-serif;
    line-height: 1.7;
    color: var(--deep-navy);
    background: var(--light-cream);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100vh;
}


/* Layout & Components */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(30, 25, 65, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease;
}

header nav {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.logo img {
    height: 108px;
    display: block;
    filter: hue-rotate(-10deg) saturate(150%);
    /* Makes the logo more orange */
}

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

.nav-links a {
    color: var(--deep-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--warm-taupe);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--warm-taupe);
    font-weight: 700;
    background: none;
    border-radius: 0;
    transform: none;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 2002;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--warm-taupe);
    border-radius: 2px;
    display: block;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

main {
    width: 100%;
    overflow-x: hidden;
}

section {
    width: 100%;
    margin: 2rem auto;
    padding: 2rem 0;
}


/* Fullscreen Section & Hero */

.fullscreen-section {
    height: 100vh;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slideshow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 20s ease-out;
    transform: scale(1.05);
    will-change: opacity, transform;
}

.hero-background.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-background.preloaded {
    /* Just a marker class for JavaScript to know the image is preloaded */
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--overlay-dark);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--deep-navy);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(30, 25, 65, 0.3);
    transition: var(--transition);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover {
    background: var(--warm-taupe);
    color: var(--white);
    transform: translateY(-1px);
}

.cta-button:hover::before {
    left: 100%;
}


/* Product and Vases Sections */

.products,
.vases,
.contact {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(30, 25, 65, 0.08);
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 5rem auto;
    width: 90%;
}

.products h2,
.vases h2,
.contact h2 {
    color: var(--deep-navy);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.products h2::after,
.vases h2::after,
.contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--light-cream);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.product-info p {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}


/* Elegant Image Hover Effect */

.image-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(30, 25, 65, 0.1);
    position: relative;
    cursor: default;
    transition: all 0.5s ease;
    background-color: var(--soft-lavender);
    transform-origin: center;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 25, 65, 0.2);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.image-container:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(30, 25, 65, 0.15);
    z-index: 10;
    background: none;
}

.image-container:hover::before {
    opacity: 1;
}

.gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.8s ease;
    vertical-align: middle;
}

.image-container:hover img {
    transform: scale(1.2);
}

.vases p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.vases-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.333% - 1rem), 1fr));
    max-width: 100%;
    gap: 1.5rem;
    margin-top: 2rem;
}

.vase-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(30, 25, 65, 0.1);
    position: relative;
    cursor: default;
    transition: all 0.5s ease;
    background-color: var(--soft-lavender);
    transform-origin: center;
}

.vase-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 25, 65, 0.2);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.vase-container:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(30, 25, 65, 0.15);
    z-index: 10;
    background: none;
}

.vase-container:hover::before {
    opacity: 1;
}

.vase-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s ease;
    vertical-align: middle;
}

.vase-container:hover img {
    transform: scale(1.2);
}

.vase-info {
    background: var(--light-cream);
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.vase-container:hover .vase-info {
    background: none;
    color: var(--deep-navy);
    font-weight: 700;
}

.vase-info h3 {
    color: var(--deep-navy);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-weight: 700;
}

.vase-container:hover .vase-info h3 {
    color: var(--deep-navy);
}

.vase-info p {
    color: var(--deep-navy);
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
    font-weight: 700;
}

.vase-container:hover .vase-info p {
    color: var(--deep-navy);
}


/* Contact Section */

.contact {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.contact h2 {
    color: var(--deep-navy);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    text-align: center;
}

.contact-intro {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-navy);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin: 0 auto 2rem;
    width: fit-content;
    min-width: 200px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.whatsapp-button:hover {
    transform: translateY(-1px);
    background: var(--warm-taupe);
    color: var(--white);
}

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-button i {
    margin-right: 0.8rem;
    font-size: 1.5rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(30, 25, 65, 0.1);
    transition: transform 0.3s ease;
}

form:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 25, 65, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: var(--deep-navy);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.1rem;
    border: 1px solid var(--soft-lavender);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-taupe);
    box-shadow: 0 0 0 3px rgba(165, 142, 111, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    background: var(--deep-navy);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

button[type="submit"]:hover {
    color: var(--deep-navy);
    font-weight: 700;
    background: none;
}

button[type="submit"]:hover::before {
    left: 100%;
}

button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}


/* Form status styling */

.form-status {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-status:not(:empty) {
    display: block;
    opacity: 1;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.form-status.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #d32f2f;
    border: 1px solid #d32f2f;
}


/* Footer */

footer {
    background: var(--deep-navy);
    color: var(--white);
    padding: 1.5rem 1rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-divider {
    width: 100px;
    height: 1px;
    background: var(--soft-lavender);
    opacity: 0.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 0.5rem;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 25, 65, 0.1);
    color: var(--soft-lavender);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.footer-socials a i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.footer-socials a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--warm-taupe);
    transform: scale(0);
    transition: transform var(--transition);
    z-index: -1;
    transform-origin: center;
}

.footer-socials a:hover {
    color: var(--soft-lavender);
    background-color: rgba(30, 25, 65, 0.1);
    transform: none;
}

.footer-socials a:hover::before {
    transform: scale(1);
}

.copyright.paragraph-link {
    font-size: 1rem;
    margin: 0;
}


/* Scroll Animations */

.reveal,
.reveal-img {
    position: relative;
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
}


/* Ensure paragraphs are always visible regardless of reveal animation */

p,
.static-content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}


/* Make sure paragraphs in sections are visible */

.products p,
.vases p,
.contact-intro,
.vase-info p {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}


/* Section styles that ensure visibility */

.products,
.vases,
.contact {
    opacity: 1 !important;
}

.reveal-img {
    transform: translateY(50px);
}

.reveal-img.active {
    transform: translateY(0);
    opacity: 1;
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Loading placeholder (improved) */

.loading-placeholder {
    background: linear-gradient(90deg, var(--light-cream) 0%, var(--soft-lavender) 50%, var(--light-cream) 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    position: relative;
    min-height: 100px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


/* Prevent scrolling when menu is open */

body.menu-open {
    overflow: hidden;
}


/* Responsive styles - Enhanced */

@media (max-width: 1200px) {
    html {
        font-size: 17px;
    }
    .hero-content h1 {
        font-size: 4rem;
    }
    .products,
    .vases,
    .contact {
        width: 95%;
    }
    .gallery {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 17px;
    }
    header nav {
        height: 100px;
    }
    .logo img {
        height: 80px;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.8rem;
    }
    .products,
    .vases,
    .contact {
        padding: 2.5rem 1.5rem;
    }
    .gallery,
    .vases-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .image-container:hover,
    .vase-container:hover {
        transform: translateY(-3px) scale(1.05);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    header {
        position: sticky !important;
        top: 0 !important;
    }
    header nav {
        height: 90px;
    }
    .logo img {
        height: 70px;
    }
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        max-width: 320px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 2rem 2rem;
        gap: 1.5rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 2000;
        overflow-y: auto;
    }
    .nav-links a {
        font-size: 1.4rem;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active {
        display: flex;
        position: fixed;
        right: 20px;
        top: 25px;
    }
    .hamburger.active span {
        background: var(--deep-navy);
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.5rem;
    }
    .gallery,
    .vases-gallery {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .gallery img {
        height: 250px;
    }
    .vase-container img {
        height: 220px;
    }
    .products h2,
    .vases h2,
    .contact h2 {
        font-size: 2.2rem;
    }
    .cta-button {
        padding: 0.8rem 2rem;
    }
    .whatsapp-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        text-align: center;
    }
    .image-container:hover,
    .vase-container:hover {
        transform: translateY(-3px) scale(1.05);
    }
}

@media (max-width: 576px) {
    html {
        font-size: 16px;
    }
    .logo img {
        height: 60px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
    .cta-button {
        font-size: 1.2rem;
        padding: 0.8rem 1.8rem;
        width: 100%;
        max-width: 280px;
    }
    .products h2,
    .vases h2,
    .contact h2 {
        font-size: 2rem;
    }
    .products,
    .vases,
    .contact {
        padding: 2rem 1rem;
        border-radius: 10px;
        margin: 3rem auto;
    }
    .gallery,
    .vases-gallery {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .gallery img {
        height: 200px;
    }
    .vase-container img {
        height: 200px;
    }
    form {
        padding: 1.5rem 1rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1.1rem;
    }
    .image-container,
    .vase-container {
        border-radius: 6px;
    }
    .image-container:hover,
    .vase-container:hover {
        transform: translateY(-1px) scale(1.02);
    }
    .product-info p,
    .vases p,
    .contact-intro {
        font-size: 1.15rem;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 15px;
    }
    .logo img {
        height: 50px;
    }
    header nav {
        height: 80px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .gallery,
    .vases-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .gallery img,
    .vase-container img {
        height: 200px;
    }
    .form-group label {
        font-size: 1.1rem;
    }
    .image-container:hover,
    .vase-container:hover {
        transform: translateY(-1px);
    }
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }
}


/* Lightbox styles */

.lightbox,
.lightbox-content,
.lightbox-close {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* File upload styling */

.file-upload {
    margin-bottom: 20px;
}

.file-upload input[type="file"] {
    margin-top: 8px;
    padding: 10px;
    width: 100%;
    background-color: var(--lightest-blue);
    border: 1px solid var(--light-blue);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.file-upload input[type="file"]:hover {
    background-color: var(--ultra-light-blue);
    border-color: var(--medium-blue);
}

.file-upload input[type="file"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.file-hint {
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-style: italic;
}


/* Hide Smartarget chat widget */

.sm-shake.top-center.sm-fixed.hover-opacity.sm-button.scale-in-contact_form-and-waves.sm-button-text.sm-rounded,
[class*="scale-in-contact_form-and-waves"],
[class*="sm-button"][style*="background-color: rgb(255, 165, 0)"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* Make paragraph links act like normal paragraphs */

.paragraph-link {
    color: var(--deep-navy);
    cursor: text;
    pointer-events: none;
    text-decoration: none;
    display: block;
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
}

.vase-info .paragraph-link {
    color: var(--warm-taupe);
    font-size: 1rem;
    margin: 0;
}

.contact-intro.paragraph-link {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.hero-content .paragraph-link {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--white);
}
