/* Skip navigation link — visible on keyboard focus only */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--sunshine-orange);
    color: #333;
    padding: 0.5rem 1.2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    z-index: 9999;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Visually hidden — accessible to screen readers, invisible on screen */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --sunshine-orange: #FFB732;
    --deep-teal: #006666;
    --vintage-cream: #FDF5E6;
    --sandy-beige: #D2B48C;
    --paper-shadow: rgba(0, 0, 0, 0.15);
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--vintage-cream);
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    color: #333;
}

header {
    background-color: var(--deep-teal);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    border-bottom: 8px solid var(--sunshine-orange);
}

.logo {
    font-family: 'Pacifico', cursive;
    color: white;
    font-size: 3rem;
    text-shadow: 3px 3px 0px var(--sunshine-orange);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 4rem;
    color: var(--deep-teal);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.image-stack {
    position: relative;
    flex: 1;
    min-width: 350px;
    height: 400px;
}

.stamp-image {
    width: 300px;
    height: 350px;
    background-image: url('img/delano-miami-beach.png');
    background-size: cover;
    background-position: center;
    border: 15px solid white;
    outline: 2px dashed #ccc;
    outline-offset: -10px;
    box-shadow: 10px 10px 20px var(--paper-shadow);
    transform: rotate(-3deg);
    position: absolute;
    z-index: 2;
}

.postcard-image {
    width: 320px;
    height: 220px;
    background-image: url('img/woman-in-citrus-grove.jpg');
    background-size: cover;
    border: 10px solid white;
    box-shadow: 10px 10px 20px var(--paper-shadow);
    transform: rotate(5deg);
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 1;
}

#join {
    background-color: var(--sandy-beige);
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    padding: 6rem 1rem;
    margin-top: 5rem;
    border-top: 2px dashed var(--deep-teal);
}

.cta-box {
    background-color: #FFFFFF;
    padding: 4rem 2rem;
    border-radius: 4px;
    box-shadow: 15px 15px 0px var(--deep-teal);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #ddd;
    position: relative;
}

.cta-box h2 {
    font-family: 'Abril Fatface', serif;
    color: var(--deep-teal);
    font-size: 2.5rem;
    margin-top: 0;
}

.price {
    font-size: 3.5rem;
    font-family: 'Abril Fatface', serif;
    color: var(--deep-teal);
    margin: 0.5rem 0;
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.items-list {
    background: rgba(0, 102, 102, 0.05);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px dashed var(--deep-teal);
    margin-bottom: 2rem;
}

.button {
    display: inline-block;
    background-color: var(--sunshine-orange);
    color: #333;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 4px 0 #d49520;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #d49520;
    background-color: #ffc254;
}

.button--teal {
    background-color: var(--deep-teal);
    color: white;
    box-shadow: 0 4px 0 #004d4d;
}

.button--teal:hover {
    background-color: #007a7a;
    box-shadow: 0 6px 0 #004d4d;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--sunshine-orange);
    outline-offset: 3px;
}

.button:focus-visible {
    outline: 2px solid var(--sunshine-orange);
    outline-offset: 4px;
}

footer {
    background-color: var(--deep-teal);
    color: var(--vintage-cream);
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
    border-top: 2px dashed var(--vintage-cream);
}


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

.footer-logo-img {
    max-width: 180px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.social-links a {
    color: var(--vintage-cream);
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--sunshine-orange);
    transform: scale(1.1);
}

.instagram-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav a {
    color: var(--vintage-cream);
    text-decoration: none;
    opacity: 0.8;
}

.footer-nav a:hover {
    opacity: 1;
}

.foundry-credit {
    margin-top: 3rem;
    font-size: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    width: 100%;
    opacity: 0.6;
}

.foundry-link {
    color: var(--sunshine-orange);
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.5rem; }
    .image-stack { display: none; }
    .cta-box { padding: 2rem 1.5rem; }
    .footer-nav { flex-direction: column; gap: 1rem; }
}
