/* Reset and Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0a0a0b;
    --color-bg-light: #111113;
    --color-text: #e8e6e3;
    --color-text-muted: #8a8680;
    --color-accent: #c9a050;
    --color-accent-hover: #d4b060;
    --color-border: rgba(232, 230, 227, 0.1);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Cormorant Infant', Georgia, serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Atmospheric Background */
.atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.fog-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 160, 80, 0.03) 25%,
        transparent 50%,
        rgba(201, 160, 80, 0.03) 75%,
        transparent 100%
    );
    animation: fogMove 30s linear infinite;
}

@keyframes fogMove {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.dust-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(201, 160, 80, 0.8);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.6; 
    }
    100% { 
        transform: translateY(-110vh) rotate(720deg); 
        opacity: 0; 
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-signature {
    height: 55px;
    width: auto;
    transform: rotate(-90deg);
    transform-origin: center center;
    filter: brightness(1.8);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger menu button — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-accent);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-split {
    display: flex;
    height: 100%;
    align-items: stretch;
}

.hero-image {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.75) saturate(0.8);
}

/* Right-edge fade — starts at 70% so face and body stay untouched */
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, var(--color-bg) 100%);
    pointer-events: none;
}

/* Bottom fade for smooth transition into next section */
.hero-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards 0.6s;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    color: var(--color-text-muted);
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.9s;
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulseDown 2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollPulseDown {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5) translateY(0); }
    50% { opacity: 1; transform: scaleY(1) translateY(6px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* About Section */
.about {
    position: relative;
    padding: 6rem 0 3rem;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.image-frame:hover {
    border-color: rgba(201, 160, 80, 0.3);
}

.about-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Fullscreen image overlay */
.image-fullscreen {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 10, 11, 0.95);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
}

.image-fullscreen.active {
    display: flex;
}

.image-fullscreen img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    margin: 2rem 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}



/* Portfolio Section */
.portfolio {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, rgba(201, 160, 80, 0.02), transparent);
}

.poems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.poem-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.poem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.4s ease;
}

.poem-card:hover {
    border-color: rgba(201, 160, 80, 0.3);
    transform: translateY(-5px);
}

.poem-card:hover::before {
    height: 100%;
}


.poem-number {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}



.poem-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.poem-excerpt {
    margin-bottom: 1rem;
}

.poem-excerpt p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.poem-body p {
    white-space: pre-line;
}

/* Shop Section — Single Featured Book */
.shop {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.shop-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-floating {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    /* Black bg matches the site background — book appears to float naturally */
}

.shop-content {
    padding-left: 2rem;
}

.shop-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.shop-review {
    margin: 2rem 0;
}

.shop-review p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-style: normal;
}



@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .shop-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .shop-content {
        padding-left: 0;
        text-align: center;
    }
}



/* Press Section */
.press {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, rgba(201, 160, 80, 0.02), transparent);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.press-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.4s ease;
}

.press-card:hover {
    border-color: rgba(201, 160, 80, 0.3);
    transform: translateY(-5px);
}

.press-card:hover::before {
    height: 100%;
}

.press-source {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.press-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.press-excerpt {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.press-open {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    background: none;
    border: none;
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.press-open:hover {
    color: var(--color-accent-hover);
    letter-spacing: 0.15em;
}

/* Review Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 10, 11, 0.92);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 3rem;
    animation: modalFadeIn 0.3s ease;
}

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

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: none;
    border: none;
    outline: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    line-height: 1;
    padding: 0.5rem;
}

.modal-close:hover {
    color: var(--color-accent);
}

.modal-header {
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.modal-header .press-source {
    margin-bottom: 0.75rem;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
}

.modal-body p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.modal-body .poem-body {
    white-space: pre-line;
    padding: 1rem 0 1rem 1.5rem;
    border-left: 2px solid var(--color-accent);
    margin: 1rem 0;
}

.modal-body .poem-body .review-author {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-size: 0.85rem;
}

/* Scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

/* Izdanja Section */
.izdanja {
    position: relative;
    padding: 3rem 0 6rem;
    z-index: 1;
}

.izdanja-image {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.izdanja-image img {
    width: 100%;
    display: block;
}

.izdanja-list {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.izdanja-upcoming {
    text-align: center;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* U pripremi Section */
.pripremi {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, rgba(201, 160, 80, 0.02), transparent);
}

.pripremi-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.pripremi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-accent);
    transition: height 0.4s ease;
}

.pripremi-card:hover {
    border-color: rgba(201, 160, 80, 0.3);
}

.pripremi-card:hover::before {
    height: 100%;
}

.pripremi-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.pripremi-subtitle {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.pripremi-excerpt p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Najveće postignuće Section */
.postignuce {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.book-embed {
    max-width: 900px;
    margin: 0 auto;
}

.book-embed iframe {
    width: 100%;
    height: 600px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-light);
    border-radius: 2px;
}

.book-embed-fallback {
    text-align: center;
    margin-top: 1.5rem;
}

.book-embed-fallback p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .book-embed iframe {
        height: 450px;
    }
}

/* Najnovije postignuće Section */
.najnovije {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.najnovije-link {
    text-align: center;
    margin-top: 2rem;
}

/* Video Section */
.video-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.video-embed {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-border);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.video-thumbnail a {
    display: block;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter 0.3s ease;
}

.video-thumbnail:hover img {
    filter: brightness(0.8);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(201, 160, 80, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-bg);
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 6rem 0 3rem;
    z-index: 1;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-link:hover {
    transform: scale(1.05);
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-value {
    font-size: 1.3rem;
    color: var(--color-accent);
}

.contact-divider {
    width: 40px;
    height: 1px;
    background: var(--color-border);
}

.social-links {
    display: flex;
    gap: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link:hover .social-name {
    color: var(--color-accent);
}

.social-name {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.social-handle {
    font-size: 1rem;
}



/* Footer */
.footer {
    position: relative;
    padding: 3rem 0;
    z-index: 1;
}

.footer-quote {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-year {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .poems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .scroll-indicator {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 11, 0.97);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        z-index: 100;
        border-left: 1px solid var(--color-border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero-split {
        flex-direction: column;
    }
    
    .hero-image {
        width: 100%;
        height: 50vh;
    }

    .hero-image::after {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to bottom, transparent, var(--color-bg));
    }

    .hero-image::before {
        display: none;
    }
    
    .hero-content {
        width: 100%;
        padding: 2rem;
        text-align: center;
        align-items: center;
    }

    .nav {
        padding: 1rem;
    }

    .poems-grid {
        grid-template-columns: 1fr;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 2rem;
    }

    /* Modal mobile adjustments */
    .modal-content {
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    /* Shop stacks vertically on mobile */
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shop-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .shop-content {
        padding-left: 0;
        text-align: center;
    }

    /* Compact poem cards to fit 3 on one screen */
    .poem-card {
        padding: 1rem 1.25rem;
    }

    .poem-number {
        margin-bottom: 0.3rem;
    }

    .poem-title {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .poem-excerpt {
        display: none;
    }

    .poem-card .press-open {
        padding-top: 0.5rem;
    }

    .poems-grid {
        gap: 0.75rem;
    }

    .portfolio {
        padding: 4rem 0;
    }

    /* About section: title first, then image, then text */
    .about-grid {
        display: flex;
        flex-direction: column;
    }

    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .poem-card,
    .press-card,
    .pripremi-card {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem 1rem;
    }
}

/* Remove focus outline on mouse click, keep for keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}
