* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --faded-teal: #5a8a8a;
    --old-film-black: #1a1a1a;
    --warm-cream: #f5e6d3;
    --red-accent: #cc4444;
    --kodak-yellow: #f8d568;
    --film-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
    --vintage-sepia: rgba(112, 66, 20, 0.15);
    --vintage-vignette: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', monospace;
    background-color: var(--warm-cream);
    color: var(--old-film-black);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--film-grain);
    opacity: 0.15;
    pointer-events: none;
    z-index: 9999;
}

header {
    background: linear-gradient(135deg, var(--old-film-black) 0%, #2a2a2a 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--kodak-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    color: var(--warm-cream);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 0.5rem;
}

.nav-links a:hover {
    color: var(--red-accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.4rem;
    z-index: 1000;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--warm-cream);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle:hover span {
    background: var(--red-accent);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.film-border {
    border: 20px solid var(--old-film-black);
    border-image: repeating-linear-gradient(90deg, var(--old-film-black) 0, var(--old-film-black) 10px, transparent 10px, transparent 20px) 20;
    position: relative;
}

.film-border::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(90deg, var(--old-film-black) 0, var(--old-film-black) 10px, transparent 10px, transparent 20px);
}

.kodak-block {
    background: linear-gradient(135deg, var(--kodak-yellow) 0%, var(--red-accent) 100%);
    padding: 2rem;
    color: var(--old-film-black);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

section {
    padding: 4rem 1rem;
    width: calc(100% - 4rem);
    position: relative;
    margin-left: 2rem;
    margin-right: 2rem;
    box-sizing: border-box;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

h1, h2, h3 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--old-film-black);
}

h1 {
    font-size: 3rem;
    text-shadow: 4px 4px 0px var(--faded-teal);
}

h2 {
    font-size: 2.5rem;
    text-shadow: 3px 3px 0px var(--faded-teal);
}

h3 {
    font-size: 1.8rem;
}

.hero {
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--warm-cream);
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
}

.hero-no-bg {
    background-image: none;
    background: linear-gradient(45deg, var(--faded-teal), var(--old-film-black));
    color: var(--warm-cream);
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
}

.hero-no-bg::before {
    display: none;
}

.hero-no-bg::after {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--faded-teal), var(--old-film-black));
    opacity: 0;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--film-grain);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 3;
}

.hero-home {
    filter: sepia(25%) contrast(1.1) brightness(0.9) hue-rotate(5deg);
}

.hero-home::before {
    background: linear-gradient(135deg, rgba(90, 138, 138, 0.4), rgba(26, 26, 26, 0.5));
    opacity: 1;
}

.hero-home::after {
    background: 
        var(--film-grain),
        radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0.4;
}

.hero-diensten {
    filter: sepia(20%) contrast(1.2) brightness(0.95) saturate(1.3) hue-rotate(-10deg);
}

.hero-diensten::before {
    background: linear-gradient(135deg, rgba(248, 213, 104, 0.45), rgba(204, 68, 68, 0.5));
    opacity: 1;
}

.hero-diensten::after {
    background: 
        var(--film-grain),
        radial-gradient(ellipse at center, transparent 30%, rgba(204, 68, 68, 0.3) 100%);
    opacity: 0.4;
}

.hero-over-ons {
    filter: sepia(30%) contrast(1.15) brightness(0.85) hue-rotate(10deg);
}

.hero-over-ons::before {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(90, 138, 138, 0.4));
    opacity: 1;
}

.hero-over-ons::after {
    background: 
        var(--film-grain),
        radial-gradient(ellipse at center, transparent 30%, rgba(26, 26, 26, 0.5) 100%);
    opacity: 0.45;
}

.hero-galerij {
    filter: sepia(15%) contrast(1.25) brightness(0.92) saturate(1.4) hue-rotate(-15deg);
}

.hero-galerij::before {
    background: linear-gradient(135deg, rgba(204, 68, 68, 0.5), rgba(26, 26, 26, 0.5));
    opacity: 1;
}

.hero-galerij::after {
    background: 
        var(--film-grain),
        radial-gradient(ellipse at center, transparent 30%, rgba(204, 68, 68, 0.35) 100%);
    opacity: 0.4;
}

.hero-contact {
    filter: sepia(18%) contrast(1.1) brightness(0.93) hue-rotate(8deg);
}

.hero-contact::before {
    background: linear-gradient(135deg, rgba(90, 138, 138, 0.35), rgba(245, 230, 211, 0.4));
    opacity: 1;
}

.hero-contact::after {
    background: 
        var(--film-grain),
        radial-gradient(ellipse at center, transparent 30%, rgba(90, 138, 138, 0.3) 100%);
    opacity: 0.35;
}

.hero h1 {
    color: var(--kodak-yellow);
    text-shadow: 4px 4px 0px var(--old-film-black);
    font-size: 4rem;
}

.polaroid {
    background: var(--warm-cream);
    padding: 1rem 1rem 4rem 1rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transform: rotate(-2deg);
    display: block;
    width: 100%;
    position: relative;
}

.polaroid img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s, filter 0.3s;
}

.polaroid:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

.polaroid:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid:nth-child(even):hover {
    transform: rotate(0deg) scale(1.05);
}

.polaroid-price {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-accent);
    color: var(--warm-cream);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 10;
    white-space: nowrap;
}

.gallery-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--red-accent);
    margin-top: 1rem;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--old-film-black);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.collage .polaroid {
    margin: 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--red-accent);
    color: var(--warm-cream);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 3px solid var(--old-film-black);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    cursor: pointer;
}

.btn:hover {
    background: var(--kodak-yellow);
    color: var(--old-film-black);
    transform: scale(1.05);
}

.notebook-texture {
    background: repeating-linear-gradient(
        0deg,
        var(--warm-cream),
        var(--warm-cream) 31px,
        #e8ddd0 31px,
        #e8ddd0 32px
    );
    padding: 2rem;
    border-left: 3px solid var(--red-accent);
}

.sticker {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--kodak-yellow);
    color: var(--old-film-black);
    border-radius: 50px;
    font-weight: bold;
    transform: rotate(-5deg);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

form {
    background: var(--warm-cream);
    padding: 2rem;
    border: 3px solid var(--old-film-black);
    border-radius: 10px;
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

form .btn {
    display: block;
    margin: 1rem auto 0;
}

.form-section {
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--old-film-black);
}

form input,
form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--old-film-black);
    background: white;
    font-family: inherit;
    font-size: 1rem;
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border: 3px solid var(--old-film-black);
    margin: 2rem 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.content-block img {
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

.content-block img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

section img:not(.hero img) {
    transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}

section img:not(.hero img):hover {
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.05);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero {
    background-attachment: scroll;
}

footer {
    background: var(--old-film-black);
    color: var(--warm-cream);
    padding: 3rem 1rem 1rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--warm-cream);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--red-accent);
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--old-film-black);
    color: var(--warm-cream);
    padding: 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.3);
    display: none;
}

.privacy-popup.active {
    display: block;
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-block {
    background: var(--warm-cream);
    padding: 2rem;
    margin: 2rem 0;
    border: 2px dashed var(--faded-teal);
}

.gift-icon-section {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--warm-cream);
    position: relative;
}

.gift-icon-wrapper {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s;
    margin: 2rem 0;
}

.gift-icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
}

.gift-icon {
    font-size: 5rem;
    color: var(--red-accent);
    text-shadow: 3px 3px 0px var(--old-film-black);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.discount-reveal {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--kodak-yellow);
    border: 3px solid var(--old-film-black);
    border-radius: 10px;
    color: var(--old-film-black);
}

.discount-reveal.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.discount-code {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    background: var(--warm-cream);
    padding: 1rem;
    border: 2px dashed var(--old-film-black);
    display: inline-block;
}

.interactive-timeline {
    position: relative;
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin: 2rem 0;
    background: var(--warm-cream);
    border-left: 4px solid var(--red-accent);
    cursor: pointer;
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
}

.timeline-item.active {
    border-left-width: 8px;
    background: linear-gradient(90deg, var(--warm-cream), rgba(248, 213, 104, 0.3));
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--red-accent);
    margin-bottom: 0.5rem;
}

.image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
}

.image-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    filter: brightness(1.1) contrast(1.1);
}

.doodle {
    font-size: 2rem;
    display: inline-block;
    margin: 0 0.5rem;
    transform: rotate(15deg);
}

@media (min-width: 1401px) {
    nav {
        max-width: 1400px;
    }
    
    .hero {
        padding: 8rem 1rem;
    }
    
    .hero h1 {
        font-size: 5rem;
    }
    
    section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        position: relative;
        flex-wrap: nowrap;
    }
    
    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--old-film-black);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 2.5rem 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc(100% - 2rem);
    }
    
    .image-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gift-icon {
        font-size: 3rem;
    }
    
    .discount-code {
        font-size: 1.5rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .map-container {
        height: 300px;
        margin: 1.5rem 0;
    }
    
    form {
        padding: 1.5rem;
        margin: 1rem auto;
        max-width: 100%;
    }
    
    form input,
    form textarea {
        font-size: 16px;
    }
    
    .interactive-timeline {
        padding: 2rem 1rem;
    }
    
    .timeline-item {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .gift-icon-section {
        padding: 3rem 1rem;
    }
    
    .polaroid-price {
        font-size: 0.9rem;
        padding: 0.4rem 0.9rem;
    }
    
    .polaroid {
        padding: 0.8rem 0.8rem 3rem 0.8rem;
    }
    
    .kodak-block {
        padding: 1.5rem;
    }
    
    footer {
        padding: 2rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem;
        position: relative;
        flex-wrap: nowrap;
    }
    
    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--old-film-black);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
    }
    
    section {
        padding: 2rem 1rem;
        width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .privacy-popup-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .map-container {
        height: 250px;
        margin: 1rem 0;
    }
    
    form {
        padding: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .doodle {
        font-size: 1.5rem;
    }
    
    .gift-icon {
        font-size: 2.5rem;
    }
}

@media (min-width: 320px) and (max-width: 445px) {
    html {
        font-size: 15px;
    }
    
    nav {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    
    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 2.5rem 0.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    section {
        padding: 2rem 0.75rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        width: calc(100% - 1.5rem);
    }
    
    .collage {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .polaroid {
        padding: 0.75rem 0.75rem 3rem 0.75rem;
    }
    
    .polaroid-price {
        font-size: 0.85rem;
        padding: 0.4rem 0.85rem;
        bottom: 0.75rem;
    }
    
    .gallery-price {
        font-size: 1.3rem;
    }
    
    .gift-icon {
        font-size: 2.5rem;
    }
    
    .discount-code {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .discount-reveal {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .map-container {
        height: 220px;
        margin: 1.5rem 0;
    }
    
    form {
        padding: 1.25rem;
        margin: 1.5rem auto;
    }
    
    form input,
    form textarea {
        font-size: 16px;
        padding: 0.75rem;
    }
    
    .btn {
        padding: 0.85rem 1.6rem;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .timeline-item {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .timeline-year {
        font-size: 1.3rem;
    }
    
    .interactive-timeline {
        padding: 2rem 0.75rem;
    }
    
    .gift-icon-section {
        padding: 2.5rem 0.75rem;
    }
    
    .kodak-block {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .notebook-texture {
        padding: 1.25rem;
    }
    
    footer {
        padding: 2rem 0.75rem 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.85rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .privacy-popup {
        padding: 1.25rem;
    }
    
    .privacy-popup-content {
        gap: 1.25rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.9rem;
    }
}

@media (min-width: 446px) and (max-width: 480px) {
    html {
        font-size: 16px;
    }
    
    nav {
        padding: 0.5rem 0.85rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 2.25rem 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc(100% - 2rem);
    }
    
    .collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 250px;
    }
    
    form {
        padding: 1.25rem;
    }
    
    .gift-icon {
        font-size: 2.75rem;
    }
    
    .discount-code {
        font-size: 1.6rem;
    }
}

@media (min-width: 481px) {
    section {
        padding: 2.5rem 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        width: calc(100% - 2rem);
    }
    
    .collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .hero {
        padding: 3.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .gift-icon {
        font-size: 3rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    form {
        padding: 1.5rem;
    }
}

@media (min-width: 641px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-links {
        display: flex;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .nav-links li {
        width: auto;
        border-bottom: none;
    }
    
    .nav-links a {
        display: inline-block;
        padding: 0.5rem;
        font-size: 0.9rem;
        width: auto;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    section {
        padding: 3.5rem 1rem;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        width: calc(100% - 3rem);
    }
    
    .collage {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero {
        padding: 5rem 1rem;
    }
    
    .gift-icon {
        font-size: 4rem;
    }
    
    .discount-code {
        font-size: 1.8rem;
    }
}

@media (min-width: 1025px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    section {
        padding: 4rem 1rem;
        margin-left: 2rem;
        margin-right: 2rem;
        width: calc(100% - 4rem);
    }
    
    .collage {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .hero {
        padding: 6rem 1rem;
    }
    
    .gift-icon {
        font-size: 5rem;
    }
    
    .discount-code {
        font-size: 2rem;
    }
}

@media (min-width: 1201px) {
    section {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
        width: calc(100% - 3rem);
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero {
        padding: 7rem 1rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem;
        position: relative;
        flex-wrap: nowrap;
    }
    
    .logo {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--old-film-black);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        text-align: center;
        padding: 1rem;
        width: 100%;
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .collage,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    section {
        width: calc(100% - 1rem);
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 1.5rem 0.5rem;
    }
    
    .hero {
        padding: 2rem 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .polaroid {
        padding: 0.5rem 0.5rem 2.5rem 0.5rem;
    }
    
    .polaroid-price {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        bottom: 0.5rem;
    }
    
    .gallery-price {
        font-size: 1.2rem;
    }
    
    .timeline-item {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .timeline-year {
        font-size: 1.2rem;
    }
    
    .gift-icon-section {
        padding: 2rem 0.5rem;
    }
    
    .gift-icon {
        font-size: 2rem;
    }
    
    .discount-reveal {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .discount-code {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .interactive-timeline {
        padding: 2rem 0.5rem;
    }
    
    .map-container {
        height: 200px;
        margin: 1rem 0;
    }
    
    .kodak-block {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .notebook-texture {
        padding: 1rem;
    }
    
    footer {
        padding: 1.5rem 0.5rem 1rem;
        margin-top: 2rem;
    }
    
    .footer-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .privacy-popup {
        padding: 1rem;
    }
    
    .privacy-popup-content {
        gap: 1rem;
    }
}
