/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: 'Georgia', serif;
    color: #2c2c2c; /* Darker, more elegant gray */
    line-height: 1.6;
    background-color: #f8f5f0; /* Softer off-white background */
}

/* Animation keyframes */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes rotateScale {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(230, 126, 34, 0.3); }
    100% { box-shadow: 0 0 15px rgba(230, 126, 34, 0.7); }
}

/* Fade-in animation class */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

/* Header styles */
header {
    background: linear-gradient(to bottom, #8b5a2b, #6b3e1e); /* Rich brown gradient */
    padding: 1.5rem 2rem; /* Increased padding */
    text-align: center;
}

.logo {
    display: block;
}

/* Logo container with full-width white background and drop shadow */
.logo-container {
    background: #ffffff;
    width: 100%;
    padding: 0.5rem 0; /* Increased vertical padding */
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    border-radius: 8px; /* Softer, classy border-radius */
}

.logo-img {
    max-width: 150px;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}

header h1 {
    margin: 0.5rem 0 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #f5f5f5; /* Softer white for contrast */
    font-family: 'Playfair Display', serif; /* Elegant font for headings */
}

/* Navigation styles */
nav {
    background-color: #4a2d1f; /* Deeper brown */
    padding: 0.5rem 2rem; /* Increased padding */
    text-align: center;
}

nav a {
    color: #f5f5f5;
    text-decoration: none;
    padding: 0.7rem 1.5rem; /* Increased padding */
    margin: 0.2rem;
    border-radius: 5px;
    display: inline-block;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Playfair Display', serif;
}

nav a:hover, nav a:focus {
    background-color: #6b3e1e;
    transform: scale(1.05);
}

/* Breadcrumbs styles */
.breadcrumbs {
    padding: 0.5rem 2rem; /* Increased padding */
    background-color: #f8f5f0;
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    text-align: center;
}

.breadcrumbs a {
    color: #6b3e1e; /* Deeper brown for links */
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #c19a6b; /* Lighter brown on hover */
    text-decoration: underline;
}

/* Hero section styles */
.hero {
    background-image: url('/images/dutch-canal-landscape.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: clamp(100px, 20vw, 250px) 2rem; /* Increased padding */
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero * {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Playfair Display', serif;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero button {
    background-color: #c19a6b; /* Classy gold */
    color: #2c2c2c;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px; /* Softer border-radius */
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.hero button:hover, .hero button:focus {
    background-color: #a67c4f;
    transform: scale(1.05);
    animation: glow 0.3s ease-in-out forwards;
}

.hero-fallback {
    display: none; /* Hidden by default, only for accessibility */
}

/* Content section styles */
.content-section {
    padding: 3rem 2rem; /* Increased padding */
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.content-section h2, .content-section h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    color: #4a2d1f; /* Deeper brown */
    font-family: 'Playfair Display', serif;
}

.content-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.content-section a {
    color: #c19a6b; /* Classy gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: #a67c4f;
    text-decoration: underline;
}

/* Policy list (ul/li) styles */
.policy-list {
    list-style-type: disc;
    padding-left: 2rem; /* Increased padding */
    margin: 0.8rem 0; /* Increased margin */
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.policy-list li {
    margin-bottom: 0.5rem; /* Increased spacing */
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
}

/* Grid container styles */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Slightly wider min width */
    gap: 1.5rem; /* Increased gap */
    padding: 0 2rem; /* Increased padding */
}

.grid-item {
    background-color: #f8f5f0; /* Softer background */
    padding: 1.5rem; /* Increased padding */
    border-radius: 8px; /* Softer border-radius */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.grid-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem; /* Increased margin */
    border-radius: 5px;
    loading: "lazy";
}

.grid-item h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.grid-item p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* Social share styles */
.social-share {
    margin: 1.5rem 0; /* Increased margin */
    text-align: center;
}

.social-share p {
    margin-bottom: 0.5rem; /* Increased margin */
    font-weight: bold;
    color: #4a2d1f;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: 'Playfair Display', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Increased gap */
}

.social-share a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-share a:hover {
    transform: scale(1.1) rotate(5deg);
}

.social-icon {
    width: 32px; /* Slightly larger */
    height: 32px;
    fill: #4a2d1f;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-share a:hover .social-icon {
    fill: #c19a6b;
}

/* Newsletter styles */
.newsletter {
    background-color: #f8f5f0;
    padding: 2rem 2rem; /* Increased padding */
    text-align: center;
    margin: 2rem 0; /* Increased margin */
}

.newsletter h3 {
    font-size: clamp(1.5rem, 3.5vw, 1.8rem);
    margin-bottom: 1rem;
    color: #4a2d1f;
    font-family: 'Playfair Display', serif;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Increased gap */
}

.newsletter input {
    padding: 0.7rem; /* Increased padding */
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    width: 250px; /* Slightly wider */
}

.newsletter button {
    background-color: #c19a6b;
    color: #2c2c2c;
    padding: 0.7rem 1.5rem; /* Increased padding */
    border: none;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.newsletter button:hover {
    background-color: #a67c4f;
    transform: scale(1.05);
    animation: glow 0.3s ease-in-out forwards;
}

/* Contact form styles */
.contact-form {
    max-width: 600px; /* Slightly wider */
    margin: 1.5rem auto; /* Increased margin */
    text-align: left;
    padding: 0 2rem; /* Increased padding */
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem; /* Increased margin */
    font-weight: bold;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem; /* Increased padding */
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 1rem; /* Increased margin */
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-family: 'Georgia', serif;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px; /* Slightly taller */
}

.contact-form button {
    background-color: #c19a6b;
    color: #2c2c2c;
    padding: 0.8rem 1.5rem; /* Increased padding */
    border: none;
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.contact-form button:hover,
.contact-form button:focus {
    background-color: #a67c4f;
    transform: scale(1.05);
    animation: glow 0.3s ease-in-out forwards;
}

/* Footer styles */
footer {
    background: linear-gradient(to top, #4a2d1f, #6b3e1e); /* Rich brown gradient */
    color: #f5f5f5;
    text-align: center;
    padding: 1.5rem 2rem; /* Increased padding */
}

footer a {
    color: #c19a6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #a67c4f;
    text-decoration: underline;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    /* Hero background image for mobile */
    .hero {
        background-image: url('/images/dutch-canal-landscape-768w.jpg');
    }

    /* Header */
    header {
        padding: 1rem 1.5rem; /* Increased padding for mobile */
    }
    .logo-img {
        max-width: 120px;
    }
    .logo-container {
        padding: 0.4rem 0; /* Slightly increased */
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    }
    header h1 {
        font-size: 1.5rem;
    }

    /* Navigation */
    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.4rem 1.5rem; /* Increased padding for mobile */
    }
    nav a {
        width: 90%;
        text-align: center;
        margin: 0.3rem 0;
        padding: 0.5rem 1rem; /* Increased padding */
        font-size: 0.85rem;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        padding: 0.4rem 1.5rem; /* Increased padding for mobile */
        font-size: 0.75rem;
    }

    /* Hero */
    .hero {
        padding: 80px 1.5rem; /* Increased padding for mobile */
    }
    .hero h2 {
        font-size: 1.6rem;
    }
    .hero p {
        font-size: 0.85rem;
        padding: 0 1rem; /* Increased padding */
    }
    .hero button {
        padding: 0.6rem 1.2rem; /* Increased padding */
        font-size: 0.85rem;
    }

    /* Content section */
    .content-section {
        padding: 2rem 1.5rem; /* Increased padding for mobile */
    }
    .content-section h2, .content-section h3 {
        font-size: 1.4rem;
    }
    .content-section p {
        font-size: 0.85rem;
        padding: 0 1rem; /* Increased padding */
    }

    /* Policy list */
    .policy-list {
        padding-left: 1.5rem; /* Slightly increased */
        margin: 0.6rem 0; /* Increased margin */
    }
    .policy-list li {
        margin-bottom: 0.3rem;
        font-size: 0.85rem;
    }

    /* Grid container */
    .grid-container {
        grid-template-columns: 1fr;
        gap: 1rem; /* Increased gap */
        padding: 0 1.5rem; /* Increased padding for mobile */
    }
    .grid-item {
        padding: 1.2rem; /* Increased padding */
    }
    .grid-item img {
        margin-bottom: 0.8rem;
    }
    .grid-item h3 {
        font-size: 1.1rem;
    }
    .grid-item p {
        font-size: 0.8rem;
    }

    /* Social share */
    .social-share {
        margin: 1rem 0;
    }
    .social-share p {
        font-size: 0.85rem;
    }
    .social-icons {
        gap: 1rem; /* Increased gap */
    }
    .social-icon {
        width: 26px;
        height: 26px;
    }

    /* Newsletter */
    .newsletter {
        padding: 1.5rem 1.5rem; /* Increased padding for mobile */
        margin: 1.5rem 0;
    }
    .newsletter h3 {
        font-size: 1.3rem;
    }
    .newsletter form {
        flex-direction: column;
        gap: 0.6rem; /* Increased gap */
    }
    .newsletter input {
        width: 100%;
        padding: 0.6rem; /* Increased padding */
        font-size: 0.85rem;
    }
    .newsletter button {
        padding: 0.6rem 1.2rem; /* Increased padding */
        font-size: 0.85rem;
    }

    /* Contact form */
    .contact-form {
        padding: 0 1.5rem; /* Increased padding for mobile */
        max-width: 100%;
        margin: 1rem auto;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem; /* Increased padding */
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    .contact-form textarea {
        min-height: 80px;
    }
    .contact-form button {
        padding: 0.7rem 1.2rem; /* Increased padding */
        font-size: 0.85rem;
    }

    /* Footer */
    footer {
        padding: 1rem 1.5rem; /* Increased padding for mobile */
    }
    footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Header */
    .logo-img {
        max-width: 100px;
    }
    .logo-container {
        padding: 0.3rem 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    header h1 {
        font-size: 1.3rem;
    }

    /* Navigation */
    nav a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 0.7rem;
    }

    /* Hero */
    .hero {
        padding: 70px 1.2rem; /* Increased padding for smaller mobile */
    }
    .hero h2 {
        font-size: 1.4rem;
    }
    .hero p {
        font-size: 0.8rem;
    }
    .hero button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Content section */
    .content-section {
        padding: 1.8rem 1.2rem; /* Increased padding for smaller mobile */
    }
    .content-section h2, .content-section h3 {
        font-size: 1.2rem;
    }
    .content-section p {
        font-size: 0.8rem;
    }

    /* Policy list */
    .policy-list {
        padding-left: 1.2rem;
        margin: 0.5rem 0;
    }
    .policy-list li {
        margin-bottom: 0.2rem;
        font-size: 0.8rem;
    }

    /* Grid container */
    .grid-item h3 {
        font-size: 1rem;
    }
    .grid-item p {
        font-size: 0.75rem;
    }

    /* Social share */
    .social-share p {
        font-size: 0.8rem;
    }
    .social-icons {
        gap: 0.8rem;
    }
    .social-icon {
        width: 24px;
        height: 24px;
    }

    /* Newsletter */
    .newsletter h3 {
        font-size: 1.2rem;
    }

    /* Contact form */
    .contact-form label {
        font-size: 0.8rem;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    .contact-form button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* Footer */
    footer p {
        font-size: 0.8rem;
    }
}

/* Tablet-specific adjustments (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Header */
    header {
        padding: 1.2rem 2rem;
    }
    .logo-img {
        max-width: 130px;
    }
    .logo-container {
        padding: 0.4rem 0;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    }
    header h1 {
        font-size: 1.8rem;
    }

    /* Navigation */
    nav a {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }

    /* Hero */
    .hero {
        padding: 120px 2rem;
    }
    .hero h2 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero button {
        padding: 0.7rem 1.3rem;
        font-size: 0.95rem;
    }

    /* Content section */
    .content-section {
        padding: 2.5rem 2rem;
    }
    .content-section h2, .content-section h3 {
        font-size: 1.6rem;
    }
    .content-section p {
        font-size: 0.95rem;
    }

    /* Policy list */
    .policy-list {
        padding-left: 1.5rem;
        margin: 0.6rem 0;
    }
    .policy-list li {
        margin-bottom: 0.3rem;
        font-size: 0.95rem;
    }

    /* Grid container */
    .grid-container {
        gap: 1.2rem;
    }
    .grid-item h3 {
        font-size: 1.2rem;
    }
    .grid-item p {
        font-size: 0.9rem;
    }

    /* Social share */
    .social-icon {
        width: 28px;
        height: 28px;
    }

    /* Newsletter */
    .newsletter input {
        width: 200px;
    }
}

/* Desktop-specific adjustments for larger screens */
@media (min-width: 1025px) {
    /* Header */
    header {
        padding: 2rem 3rem; /* Increased padding for desktop */
    }
    .logo-img {
        max-width: 150px;
    }
    .logo-container {
        padding: 0.6rem 0; /* Increased padding */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    }
    header h1 {
        font-size: 2.6rem;
    }

    /* Navigation */
    nav a {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        font-size: 0.9rem;
    }

    /* Hero */
    .hero {
        padding: 300px 3rem; /* Increased padding for desktop */
    }
    .hero h2 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.4rem;
    }
    .hero button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Content section */
    .content-section {
        padding: 4rem 3rem; /* Increased padding for desktop */
    }
    .content-section h2 {
        font-size: 2.2rem;
    }
    .content-section p {
        font-size: 1.1rem;
    }

    /* Policy list */
    .policy-list {
        padding-left: 2rem;
        margin: 0.8rem 0;
    }
    .policy-list li {
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    /* Grid container */
    .grid-container {
        gap: 2rem;
        padding: 0 2rem;
    }
    .grid-item {
        padding: 2rem;
    }
    .grid-item h3 {
        font-size: 1.4rem;
    }
    .grid-item p {
        font-size: 0.95rem;
    }

    /* Social share */
    .social-share {
        margin: 2rem 0;
    }
    .social-share p {
        font-size: 0.95rem;
    }
    .social-icon {
        width: 34px;
        height: 34px;
    }

    /* Newsletter */
    .newsletter {
        padding: 3rem 3rem; /* Increased padding for desktop */
        margin: 3rem 0;
    }
    .newsletter h3 {
        font-size: 1.7rem;
    }
    .newsletter input {
        width: 300px;
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    .newsletter button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    /* Contact form */
    .contact-form {
        padding: 0 2rem;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    .contact-form button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    /* Footer */
    footer {
        padding: 2rem 3rem; /* Increased padding for desktop */
    }
    footer p {
        font-size: 0.95rem;
    }
}
