:root {
    --page-bg: #eef2f7;
    --surface: #ffffff;
    --text-primary: #102a43;
    --text-secondary: #334e68;
    --accent: #2563eb;
    --accent-soft: #dbeafe;
    --muted: #64748b;
    --border: rgba(15, 23, 42, 0.08);
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #eef4ff 0%, #f8fafc 45%, #eef2f7 100%);
    color: var(--text-primary);
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    overflow: hidden;
    margin: 24px 0;
    background-image: linear-gradient(180deg, rgba(5, 23, 42, 0.18),
     rgba(5, 23, 42, 0.18)), url('images/alexia_outside_night.png');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.hero-overlay {
    width: 100%;
    padding: 60px 40px;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 28px;
}

.hero-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 20px 0 18px;
    color: #0f172a;
}
.hero-subtitle-1{
    font-size: clamp(3rem, 3.5vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 20px 0 18px;
    color: #0f172a;
}
.hero-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.nav-link,
.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-button:hover,
.nav-button:focus-visible {
    transform: translateY(-1px);
    background: #1d4ed8;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
}

.hero-gallery {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.gallery-card {
    background: var(--surface);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-card--secondary {
    align-self: end;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-section {
    background: var(--surface);
    border-radius: 24px;
    padding: 36px 42px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 18px;
    color: #102a43;
}

.content-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: #0f172a;
    color: #f8fafc;
    border-radius: 24px;
    padding: 28px 32px;
    box-shadow: var(--shadow);
}

.footer-text {
    font-size: 0.98rem;
    color: #e2e8f0;
}

.footer-link {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover,
.footer-link:focus-visible {
    color: #fff;
}

@media (max-width: 960px) {
    .hero-gallery {
        grid-template-columns: 1fr;
    }

    .hero-overlay {
        padding: 48px 28px;
    }
}

@media (max-width: 720px) {
    .site-wrapper {
        padding: 0 18px 36px;
    }

    .hero {
        min-height: auto;
    }

    .hero-overlay {
        padding: 38px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .content-section {
        padding: 28px 24px;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: clamp(2.5rem, 11vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        padding: 32px 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .content-section {
        padding: 24px 20px;
    }

    .video {
        min-height: 50vh;
    }

    .image-list {
        max-width: 100%;
        height: 420px;
        padding: 0 12px;
    }

    .nav-button {
        padding: 12px 18px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }

    .content-text {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .site-wrapper {
        padding: 0 12px 36px;
    }

    .hero-overlay {
        padding: 24px 12px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        margin: 16px 0 14px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .eyebrow {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    .nav-links {
        margin-top: 24px;
        gap: 10px;
    }

    .nav-button {
        padding: 11px 16px;
        font-size: 0.85rem;
    }

    .content-section {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .section-title {
        font-size: clamp(1.25rem, 6vw, 2rem);
        margin-bottom: 14px;
    }

    .content-text {
        font-size: 0.95rem;
    }

    .image-list {
        height: 360px;
        padding: 0 8px;
    }

    .video {
        min-height: 45vh;
    }

    .site-footer {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .site-wrapper {
        padding: 0 8px 24px;
    }

    .hero {
        min-height: 60vh;
        margin: 12px 0;
        border-radius: 16px;
    }

    .hero-overlay {
        padding: 20px 10px;
        border-radius: 16px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
        margin: 12px 0 10px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .nav-links {
        margin-top: 16px;
        gap: 8px;
    }

    .nav-button {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-height: 40px;
    }

    .content-section {
        padding: 16px 12px;
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .section-title {
        font-size: clamp(1.1rem, 5vw, 1.8rem);
        margin-bottom: 12px;
    }

    .content-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .image-list {
        height: 300px;
    }

    .site-footer {
        padding: 16px 12px;
        border-radius: 12px;
        gap: 12px;
    }
}

@media (max-width: 1024px) {
    .hero-gallery {
        gap: 20px;
    }

    .content-section {
        padding: 32px 36px;
    }
}

@media (min-width: 1400px) {
    .site-wrapper {
        max-width: 1400px;
    }

    .hero-gallery {
        gap: 32px;
    }
}
.Container_index,
.Container_Godina1,
.Container_Godina2,
.Container_Video {
    width: 100%;
    margin: 0 auto;
    background-color: var(--surface);
    padding: 0 16px;
}

.Content1,
.Content2,
.Content_godina1,
.Content_godina2,
.Content5 {
    min-height: auto;
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.Content_Video {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.second_video,
.third_video {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.video {
    width: 100%;
    max-width: 900px;
    height: auto;
    min-height: 70vh;
    display: block;
}

.video2 {
    min-height: 80vh;
}


.image-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    background-color: var(--surface);
}

.image-scroll-list {
    display: flex;
    gap: 15px;
    padding: 10px;
    width: max-content;
}

.image-item {
    flex-shrink: 0;
    width: 250px;
    height: 200px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.image-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.image-scroll-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 30px 0;
}

.image-list {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: height 0.5s ease-in-out;
}

.image-item {
    display: none;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.image-item.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* Carousel navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.carousel-btn.prev {
    left: 15px;
    transform: translateY(-50%);
}

.carousel-btn.next {
    right: 15px;
    transform: translateY(-50%);
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Slideshow gallery styles */
.slideshow-gallery {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: auto;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.9);
}

.prev {
    left: 15px;
    transform: translateY(-50%);
}

.next {
    right: 15px;
    transform: translateY(-50%);
}

/* Slideshow responsive styles */
@media (max-width: 720px) {
    .slideshow-gallery {
        max-width: 100%;
        border-radius: 16px;
    }

    .slide {
        height: auto;
    }

    .prev,
    .next {
        padding: 12px;
        font-size: 16px;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .slideshow-gallery {
        margin-bottom: 20px;
    }

    .slide {
        height: auto;
    }

    .prev,
    .next {
        padding: 10px;
        font-size: 14px;
        width: 44px;
        height: 44px;
        left: auto;
        right: auto;
        transform: translateY(-50%);
    }

    .prev {
        left: 12px;
    }

    .next {
        right: 12px;
    }

    .dots-container {
        padding: 12px 0;
    }

    .dot {
        height: 8px;
        width: 8px;
        margin: 0 3px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 26px;
        left: auto;
        right: auto;
        transform: translateY(-50%);
    }

    .carousel-btn.prev {
        left: 12px;
    }

    .carousel-btn.next {
        right: 12px;
    }
}

@media (max-width: 375px) {
    .slideshow-gallery {
        margin-bottom: 20px;
    }

    .slide {
        height: auto;
    }

    .prev,
    .next {
        padding: 8px;
        font-size: 12px;
        width: 40px;
        height: 40px;
        left: auto;
        right: auto;
        transform: translateY(-50%);
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
        left: auto;
        right: auto;
        transform: translateY(-50%);
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 320px) {
    .slide {
        min-height: 390px;
    }

    .prev,
    .next {
        padding: 6px;
        font-size: 11px;
        width: 36px;
        height: 36px;
        left: auto;
        right: auto;
        transform: translateY(-50%);
    }

    .prev {
        left: 8px;
    }

    .next {
        right: 8px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
        left: auto;
        right: auto;
        transform: translateY(-50%);
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }
}

/* Utility: ensure clickable spacing on small screens */
.ul li a {
    display: inline-block;
    padding: 6px 4px;
}
