<style>
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px; /* to push content below non-moving header menu */
}

.callout {
    border: 1px solid #999;
    background: #ddd;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Splash Logo Animation */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOut 2s ease-in-out 1s forwards;
}

.splash-logo {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 900;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    padding-top: 10px;
    padding-left: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #000;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 25px;
    height: 3px;
    background: #666;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    top: -8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
    padding: 80px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #555;
}

/* Gallery Teaser */
.gallery-teaser {
	text-align: center;
	margin-bottom: 50px;
}

.gallery-teaser p {
    max-width: 70%;
    font-size: 1rem;
    font-weight: 100;
    color: #999;
    margin: 20px auto;
}

.gallery-teaser h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 columns */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
}

.gallery-card {
    background: #fff; /* White background for card effect */
    border: 1px solid #ccc; /* Subtle border to define the box */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    overflow: hidden; /* Ensure content stays within rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px 8px 0 0; /* Rounded top corners to match card */
    display: block;
}

.grid-title {
    font-size: 1.1rem;
    font-weight: 300;
    color: #666;
    text-align: center;
    padding: 10px;
    margin: 0; /* Remove default margin */
    background: #f9f9f9; /* Slight background to distinguish title area */
    border-top: 1px solid #eee; /* Separator between image and title */
}

.gallery-item a, .gallery-item a:hover {
    text-decoration: none !important;
}

.grid-title:hover {
    font-weight: 500;
}

/* Model Grid Specific Styles */
.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 300;
    color: #777;
}

.model-grid .gallery-card {
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.model-grid .gallery-card:hover {
    transform: none; /* Prevent entire card from scaling */
    color: #222;
}

.model-grid .gallery-item img {
    border-radius: 0;
    transition: transform 0.3s ease;
    margin-bottom: 5px;
}

.model-grid .gallery-card:hover img {
    transform: scale(1.05) translateY(-5px);
}


.see-more {
    display: inline-block;
    margin-top: 20px;
    color: #666;
    text-decoration: none;
    font-weight: 700;
}

.see-more:hover {
    color: #000;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links li a:hover {
    text-decoration: underline;
}

/* Form Section */
#form {
    max-width: 600px;
    margin: 20px auto;
    padding-bottom: 200px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
}

#form h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

#form p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

#form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#form input[type="text"],
#form textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

#form input[type="text"]:focus,
#form textarea:focus {
    border-color: #333;
}

#form textarea {
    resize: vertical;
    min-height: 120px;
}

#form input[type="submit"].special {
    padding: 12px 24px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

#form input[type="submit"].special:hover {
    background: #555;
}

/* Policy Sections */
.content {
    max-width: 90%;
    margin: 20px auto 50px;
    background: #fff;
    border-radius: 5px;
    text-align: left;
}
.content h2 {
    max-width: 70%;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}
.content a {
    text-decoration: none;
    color: #333;
}

/* Policy Sections */
.policy-section {
    max-width: 800px;
    margin: 20px auto 50px;
    background: #f9f9f9;
    border-radius: 5px;
}

.policy-section h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 20px 0 10px;
}

.policy-section p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.policy-section .callout h2 { font-size: 1.2rem; margin-top: 10px; }
.policy-section .callout p { font-size: 0.8rem; }

.policy-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section ul li {
    margin-bottom: 10px;
}

.policy-section ul ul {
    list-style-type: circle;
    margin-left: 20px;
}

/* Social Links Section */
.user-profile__social__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px auto;
    padding: 0 20px;
}

.user-profile__social__links__item {
    width: 40px;
    max-width: 40px;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.user-profile__social__links__item:hover {
    transform: scale(1.1);
}

.user-profile__social__links__item svg {
    fill: #333; /* Changed from #ffffff to match site color scheme */
    width: 100%;
    height: auto;
}

/* Responsive Adjustments for Policy Sections */
@media (max-width: 768px) {
    .policy-section h1 { font-size: 2rem; }
    .policy-section h2 { font-size: 1.5rem; }
    .policy-section h3 { font-size: 1.2rem; }
    .policy-section p { font-size: 0.9rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */ }
    .gallery-item img { height: 200px; }
    .grid-title { font-size: 1rem; }
    .model-grid { grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */ }
    .model-grid .gallery-item img { height: 200px; }
    .model-grid .grid-title { font-size: 0.9rem; }
    .nav-links { display: none; position: absolute; top: 60px; left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
    .nav-toggle:checked ~ .nav-links { display: flex; }
    .nav-toggle-label { display: block; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    #form { margin: 30px 20px; padding: 15px; }
    #form h2 { font-size: 1.5rem; }
    #form p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .splash-logo { max-width: 80%; }
    .hero-content { padding: 10px; }
    .hero h1 { font-size: 1.5rem; }
    .cta-button { padding: 10px 20px; font-size: 0.9rem; }
    #form input[type="text"], #form textarea { font-size: 0.9rem; padding: 10px; }
    #form input[type="submit"].special { padding: 10px 20px; font-size: 0.9rem; }
    .gallery-grid { grid-template-columns: 1fr; /* 1 column on mobile */ }
    .gallery-item img { height: 150px; }
    .grid-title { font-size: 0.9rem; }
    .model-grid { grid-template-columns: 1fr; /* 1 column on mobile */ }
    .model-grid .gallery-item img { height: 150px; }
    .model-grid .grid-title { font-size: 0.8rem; }
}
