/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Pirata+One&family=Tinos:ital,wght@0,400;0,700;1,400&family=Covered+By+Your+Grace&display=swap');

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nautical/Tiki Color Palette - BOLD & SATURATED */
    --ocean-deep: #0a3d52;
    --ocean-medium: #1a5f7a;
    --ocean-light: #2b8ea8;
    --ocean-bright: #3fb8dc;
    --sand: #f4e8d0;
    --sand-dark: #d4c4a8;
    --tiki-orange: #ff5722;
    --tiki-coral: #ff7043;
    --tiki-red: #d84315;
    --tiki-green: #00897b;
    --tiki-lime: #4db6ac;
    --bamboo: #d4a574;
    --wood-dark: #4a2c1f;
    --wood-medium: #6d4c41;
    --cream: #fef9f1;
    --text-dark: #1a1410;
    --text-light: #5d4e3e;
    --gold: #ffd54f;

    /* Typography */
    --font-main: 'Tinos', Georgia, serif;
    --font-heading: 'Pirata One', cursive;
    --font-handwritten: 'Covered By Your Grace', cursive;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;

    /* Layout */
    --container-max: 1200px;
    --border-radius: 12px;
}

/* === WAVE ANIMATION KEYFRAMES === */
@keyframes wave {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-5%) translateY(-3px); }
    50% { transform: translateX(-10%) translateY(0); }
    75% { transform: translateX(-5%) translateY(3px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rope-swing {
    0%, 100% { transform: rotate(-0.3deg); }
    50% { transform: rotate(0.3deg); }
}

@keyframes ripple {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--text-dark);
    background:
        linear-gradient(135deg, rgba(26, 95, 122, 0.05) 0%, rgba(63, 184, 220, 0.05) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(26, 95, 122, 0.03) 35px, rgba(26, 95, 122, 0.03) 70px),
        linear-gradient(to bottom, #fef9f1 0%, #f4e8d0 50%, #e8dcc4 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    color: var(--ocean-deep);
    letter-spacing: 0.02em;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    text-shadow: 3px 3px 0 rgba(255, 87, 34, 0.2);
}

h2 {
    font-size: 2.5rem;
    margin-top: var(--space-lg);
    text-shadow: 2px 2px 0 rgba(255, 87, 34, 0.15);
}

h3 {
    font-size: 1.8rem;
    margin-top: var(--space-md);
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--ocean-medium);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover {
    color: var(--tiki-orange);
    transform: translateY(-1px);
}

.handwritten {
    font-family: var(--font-handwritten);
    font-size: 1.3em;
}

/* === HEADER === */
header {
    background:
        linear-gradient(135deg, rgba(10, 61, 82, 0.98) 0%, rgba(26, 95, 122, 0.98) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    color: var(--cream);
    padding: var(--space-lg) 0;
    border-bottom: 5px solid var(--tiki-orange);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    animation: rope-swing 8s ease-in-out infinite;
    transform-origin: top center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.logo h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin: 0;
    text-shadow:
        3px 3px 0 var(--tiki-orange),
        4px 4px 8px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.tagline {
    color: var(--sand);
    font-size: 1.1rem;
    font-family: var(--font-handwritten);
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

nav a {
    color: var(--cream);
    font-weight: 700;
    padding: var(--space-xs) var(--space-md);
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

nav a:hover {
    background: var(--tiki-orange);
    color: white;
    transform: translateY(-2px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

nav a.active {
    background: linear-gradient(135deg, var(--tiki-orange), var(--tiki-coral));
    color: white;
    border-color: var(--gold);
}

/* === HERO SECTION === */
.hero {
    background:
        radial-gradient(ellipse at top, transparent 0%, rgba(10, 61, 82, 0.4) 100%),
        linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-medium) 50%, var(--ocean-light) 100%);
    background-size: 200% 200%;
    animation: ripple 15s ease infinite;
    color: white;
    padding: calc(var(--space-xxl) * 1.5) 0;
    text-align: center;
    border-bottom: 5px solid var(--tiki-orange);
    margin-bottom: var(--space-xl);
    margin-top: -5px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 100px);
    animation: wave 20s linear infinite;
}

.hero::after {
    content: '🌊';
    position: absolute;
    font-size: 4rem;
    opacity: 0.1;
    bottom: 20px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero h2 {
    color: var(--gold);
    font-size: 4rem;
    margin-bottom: var(--space-md);
    text-shadow:
        4px 4px 0 var(--tiki-orange),
        5px 5px 12px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.5rem;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-handwritten);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    position: relative;
    z-index: 1;
}

/* === CARDS & GRID === */
.featured,
.recent {
    padding: var(--space-xl) 0;
}

.featured h2,
.recent h2 {
    text-align: center;
    color: var(--ocean-deep);
    margin-bottom: var(--space-lg);
    font-size: 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.card {
    background:
        linear-gradient(145deg, #ffffff, #f5f5f5),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(109, 76, 65, 0.02) 10px, rgba(109, 76, 65, 0.02) 20px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(109, 76, 65, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--wood-medium);
    position: relative;
    animation: fadeInUp 0.6s ease-out backwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(74, 44, 31, 0.03) 3px, rgba(74, 44, 31, 0.03) 6px);
    pointer-events: none;
    opacity: 0.5;
}

.card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 0 0 3px var(--tiki-orange);
}

.card-header {
    padding: var(--space-md);
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 10px, transparent 10px, transparent 20px);
}

.blog-card {
    background: linear-gradient(135deg, var(--ocean-medium), var(--ocean-bright));
}

.recipe-card {
    background: linear-gradient(135deg, var(--tiki-green), var(--tiki-lime));
}

.review-card {
    background: linear-gradient(135deg, var(--tiki-red), var(--tiki-coral));
}

.card h3 {
    padding: 0 var(--space-md);
    margin-top: var(--space-md);
    color: var(--ocean-deep);
}

.card p {
    padding: 0 var(--space-md);
    color: var(--text-light);
    line-height: 1.7;
}

.category {
    background: rgba(255, 255, 255, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn {
    display: inline-block;
    margin: var(--space-md);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-medium));
    color: white;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(10, 61, 82, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, var(--tiki-orange), var(--tiki-coral));
    color: white;
    transform: translateY(-2px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

/* === POST LIST === */
.post-list {
    max-width: 800px;
    margin: var(--space-lg) auto;
}

.post-preview {
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(109, 76, 65, 0.02) 2px, rgba(109, 76, 65, 0.02) 4px);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    border-radius: var(--border-radius);
    border-left: 6px solid var(--ocean-medium);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(109, 76, 65, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.post-preview::before {
    content: '⚓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    opacity: 0.05;
    transition: all 0.3s ease;
}

.post-preview:hover {
    transform: translateX(10px);
    border-left-color: var(--tiki-orange);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 0 0 2px var(--tiki-orange);
}

.post-preview:hover::before {
    opacity: 0.15;
    transform: translateY(-50%) rotate(15deg);
}

.post-preview .date {
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: var(--font-handwritten);
    display: block;
    margin-bottom: var(--space-xs);
}

.post-preview h3 {
    margin: var(--space-xs) 0;
}

.post-preview h3 a {
    color: var(--ocean-deep);
}

.post-preview h3 a:hover {
    color: var(--tiki-orange);
}

/* === PAGE HEADER === */
.page-header {
    background:
        radial-gradient(ellipse at bottom, transparent 0%, rgba(10, 61, 82, 0.3) 100%),
        linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-medium) 50%, var(--ocean-bright) 100%);
    background-size: 200% 200%;
    animation: ripple 15s ease infinite;
    color: white;
    padding: var(--space-xxl) 0;
    text-align: center;
    border-bottom: 5px solid var(--tiki-orange);
    margin-bottom: var(--space-xl);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(255, 255, 255, 0.02) 80px, rgba(255, 255, 255, 0.02) 160px);
    animation: wave 30s linear infinite;
}

.page-header h1 {
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
    text-shadow:
        4px 4px 0 var(--tiki-orange),
        5px 5px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--cream);
    font-size: 1.4rem;
    font-family: var(--font-handwritten);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* === BLOG POSTS === */
.content {
    padding: var(--space-xl) 0;
}

.blog-post,
.recipe,
.review {
    max-width: 850px;
    margin: 0 auto var(--space-xxl) auto;
    background:
        linear-gradient(to bottom, #ffffff, #fafafa),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(109, 76, 65, 0.015) 3px, rgba(109, 76, 65, 0.015) 6px);
    padding: var(--space-xxl);
    border-radius: var(--border-radius);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(109, 76, 65, 0.1);
    border-top: 6px solid var(--ocean-medium);
    border-left: 3px solid var(--wood-medium);
    border-right: 3px solid var(--wood-medium);
    position: relative;
}

.blog-post::before,
.recipe::before,
.review::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background:
        radial-gradient(circle at 20px 20px, var(--tiki-orange) 0%, transparent 50%),
        radial-gradient(circle at 60px 60px, var(--ocean-light) 0%, transparent 50%);
    opacity: 0.05;
    pointer-events: none;
}

.post-meta,
.recipe-meta,
.review-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 3px dashed var(--sand-dark);
    flex-wrap: wrap;
}

.post-meta span,
.recipe-meta span,
.review-meta span {
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-handwritten);
    background: var(--sand);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.lead {
    font-size: 1.35rem;
    color: var(--ocean-deep);
    font-style: italic;
    border-left: 6px solid var(--tiki-orange);
    padding-left: var(--space-lg);
    margin: var(--space-lg) 0;
    background: linear-gradient(to right, rgba(255, 87, 34, 0.05), transparent);
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
    line-height: 1.8;
}

/* === RECIPES === */
.recipe-header {
    margin-bottom: var(--space-xl);
    position: relative;
}

.recipe-header h2 {
    margin-top: 0;
    color: var(--ocean-deep);
    border-bottom: 5px solid var(--tiki-green);
    padding-bottom: var(--space-md);
    position: relative;
}

.recipe-header h2::after {
    content: '🍹';
    position: absolute;
    right: 0;
    bottom: 10px;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
}

.recipe-ingredients {
    background:
        linear-gradient(135deg, rgba(0, 137, 123, 0.05), rgba(77, 182, 172, 0.05)),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 137, 123, 0.02) 10px, rgba(0, 137, 123, 0.02) 20px);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    border: 3px solid var(--tiki-green);
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.15);
}

.recipe-ingredients h3,
.recipe-instructions h3 {
    color: var(--ocean-deep);
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
}

.recipe-ingredients ul,
.recipe-instructions ol {
    padding-left: var(--space-lg);
}

.recipe-ingredients li,
.recipe-instructions li {
    margin-bottom: var(--space-sm);
    line-height: 1.9;
    position: relative;
}

.recipe-ingredients li::marker {
    color: var(--tiki-green);
    font-weight: bold;
}

.recipe-instructions li::marker {
    color: var(--ocean-medium);
    font-weight: bold;
}

.recipe-note {
    background:
        linear-gradient(135deg, var(--sand), var(--sand-dark)),
        repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255, 87, 34, 0.05) 8px, rgba(255, 87, 34, 0.05) 16px);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    border-left: 6px solid var(--tiki-orange);
    border-right: 3px solid var(--bamboo);
    margin-top: var(--space-lg);
    font-style: italic;
    box-shadow:
        0 4px 12px rgba(255, 87, 34, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
}

.recipe-note::before {
    content: '📝';
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* === REVIEWS === */
.review-header {
    margin-bottom: var(--space-xl);
}

.review-header h2 {
    margin-top: 0;
    color: var(--ocean-deep);
    border-bottom: 5px solid var(--tiki-orange);
    padding-bottom: var(--space-md);
    position: relative;
}

.review-header h2::after {
    content: '🥃';
    position: absolute;
    right: 0;
    bottom: 10px;
    font-size: 2rem;
    animation: float 5s ease-in-out infinite;
}

.rating {
    font-size: 2rem;
    margin: var(--space-md) 0;
    text-shadow: 2px 2px 4px rgba(255, 215, 79, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.review-recommendation {
    background:
        linear-gradient(135deg, var(--tiki-green), var(--tiki-lime)),
        repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, 0.1) 12px, rgba(255, 255, 255, 0.1) 24px);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    border-left: 6px solid var(--gold);
    border-right: 3px solid var(--ocean-deep);
    margin-top: var(--space-xl);
    color: white;
    box-shadow:
        0 6px 20px rgba(0, 137, 123, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.review-recommendation strong {
    color: var(--gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* === ABOUT PAGE === */
.about-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-intro {
    background:
        linear-gradient(135deg, #ffffff, #fafafa),
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(26, 95, 122, 0.02) 15px, rgba(26, 95, 122, 0.02) 30px);
    padding: var(--space-xxl);
    border-radius: var(--border-radius);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 3px var(--ocean-medium);
    border-top: 8px solid var(--ocean-deep);
    margin-bottom: var(--space-xxl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '🏴‍☠️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.1;
    animation: float 10s ease-in-out infinite;
}

.about-intro h2 {
    margin-top: 0;
    color: var(--ocean-deep);
}

.about-section {
    background:
        linear-gradient(to bottom, #ffffff, #fafafa),
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(109, 76, 65, 0.02) 4px, rgba(109, 76, 65, 0.02) 8px);
    padding: var(--space-xl);
    border-radius: var(--border-radius);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(109, 76, 65, 0.1);
    margin-bottom: var(--space-lg);
    border-left: 4px solid var(--bamboo);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section:hover {
    transform: translateX(5px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 0 0 2px var(--ocean-medium);
}

.philosophy-list {
    list-style: none;
    padding-left: 0;
}

.philosophy-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    position: relative;
    transition: all 0.3s ease;
}

.philosophy-list li::before {
    content: "⚓";
    position: absolute;
    left: 0;
    color: var(--tiki-orange);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.philosophy-list li:hover::before {
    transform: rotate(15deg) scale(1.2);
}

.contact-info {
    background:
        linear-gradient(135deg, var(--sand), var(--sand-dark)),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 87, 34, 0.03) 10px, rgba(255, 87, 34, 0.03) 20px);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    margin-top: var(--space-md);
    border: 3px solid var(--bamboo);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.contact-info p {
    margin: var(--space-sm) 0;
    font-family: var(--font-handwritten);
    font-size: 1.2rem;
}

.about-footer {
    text-align: center;
    font-size: 1.4rem;
    font-family: var(--font-handwritten);
    color: var(--ocean-deep);
    margin-top: var(--space-xxl);
    padding: var(--space-xxl);
    background:
        linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 50%, var(--sand) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(109, 76, 65, 0.05) 20px, rgba(109, 76, 65, 0.05) 40px);
    border-radius: var(--border-radius);
    border: 4px solid var(--wood-medium);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

/* === FOOTER === */
footer {
    background:
        linear-gradient(135deg, var(--ocean-deep) 0%, var(--wood-dark) 100%),
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255, 255, 255, 0.02) 3px, rgba(255, 255, 255, 0.02) 6px);
    color: var(--sand);
    text-align: center;
    padding: var(--space-xxl);
    margin-top: var(--space-xxl);
    border-top: 6px solid var(--tiki-orange);
    box-shadow:
        0 -8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 15px, transparent 15px, transparent 30px);
}

footer p {
    margin: 0;
    font-family: var(--font-handwritten);
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .recipe-content {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .blog-post,
    .recipe,
    .review {
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-xxl: 2.5rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    nav ul {
        gap: var(--space-xs);
    }

    nav a {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
}
