/* General Body & Typography */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
}

/* Custom styles for Bootstrap overrides and specific elements */

/* Hero Section */
.hero-section {
    background: url('https://lh3.googleusercontent.com/d/1HGg0Pu6LrV1DPGz_IuPMi47BF5Ru_oBN=s2200') no-repeat center center/cover; /* Placeholder for a beautiful Whitstable photo */
    min-height: 500px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Overlay for readability */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-placeholder img {
    border-radius: 8px; /* Slightly rounded corners for the logo */
}

/* About Section */
.about-section h2 {
    margin-bottom: 25px;
}

/* Product Images - Added max-width and pointer cursor */
.about-section .img-fluid {
    max-width: 400px; /* Set maximum width for displayed images */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensures max-width works correctly */
    margin: 0 auto; /* Center images if they are smaller than the column */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section .clickable-image {
    cursor: zoom-in; /* Indicate that the image is clickable for zoom */
}

.about-section .clickable-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Signup Section */
.signup-section .mx-auto {
    max-width: 700px; /* Keep form contained */
}

/* Override Bootstrap button color */
.btn-primary {
    background-color: #007bff; /* Whitstable blue, perhaps? */
    border-color: #007bff;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

/* Form field styles */
.form-control-lg {
    border-radius: 0.5rem;
}

.form-control-lg:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}


/* Thank You Message */
.thank-you-message {
    border: 1px solid #d4edda;
    color: #155724;
}

.thank-you-message h2 {
    color: #155724;
}

/* Footer */
footer a {
    font-weight: 500;
}

footer a:hover {
    color: #e9ecef !important; /* Lighter white on hover */
}

/* Modal specific styles */
#zoomedImage {
    max-height: 80vh; /* Limit height of image in modal for larger screens */
    width: auto; /* Allow image to size naturally within constraints */
    object-fit: contain; /* Ensure image fits without cropping */
}

/* Responsive adjustments using Bootstrap's grid system and utility classes */
/* No specific media queries needed here as Bootstrap handles most of it,
   but you can add custom ones if you have very specific breakpoints. */