:root {
    --main-color: #1f2a37;
    --accent-color: #09b1ba;
    --accent-contrast: #0b6b70;
    --facebook-color: #1877f2;
    --instagram-gradient: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    --bg-light: #f6f7fb;
    --surface: #ffffff;
    --text-muted: #6b7280;
    --feature-icon: #3498db;
    --footer-bg: #0b1220;
    --soft-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 1.6;
    color: var(--main-color);
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section[id] {
    scroll-margin-top: 40px;
}

header {
    background: radial-gradient(1000px 400px at 50% -200px, rgba(9, 177, 186, 0.12), transparent), var(--surface);
    padding: 60px 0 40px 0;
    text-align: center;
    box-shadow: var(--soft-shadow);
}

.logo {
    font-size: 2.5em;
    font-weight: 300;
    color: var(--main-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.1em;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

 

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    color: white;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95em;
    outline: none;
}

.social-link:focus {
    box-shadow: 0 0 0 3px var(--accent-color), 0 4px 12px rgba(0,0,0,0.15);
}

.social-link:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.vinted { background-color: var(--accent-color); }
.facebook { background-color: var(--facebook-color); }
.instagram { background: var(--instagram-gradient); }

.hero-section {
    padding: 80px 0 60px 0;
    text-align: center;
    background: radial-gradient(1000px 400px at 50% 0px, rgba(9, 177, 186, 0.08), transparent), var(--surface);
}

.hero-title {
    font-size: 2.2em;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.button {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button.primary {
    background: linear-gradient(135deg, var(--accent-color), #53d3d9);
    color: white;
    box-shadow: 0 8px 24px rgba(9, 177, 186, 0.25);
}

.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(9, 177, 186, 0.35);
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.gallery-item {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.gallery-content {
    padding: 30px;
}

.gallery-title {
    font-size: 1.3em;
    color: var(--main-color);
    margin-bottom: 12px;
    font-weight: 500;
}

.gallery-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95em;
}

.about-section {
    background: var(--surface);
    padding: 80px 0;
    text-align: center;
}

.about-title {
    font-size: 2em;
    color: var(--main-color);
    margin-bottom: 30px;
    font-weight: 300;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    padding: 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(9,177,186,0.06), rgba(255,255,255,0.6));
}

.feature-icon {
    font-size: 2.5em;
    color: var(--feature-icon);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.2em;
    color: var(--main-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-text {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-section {
    background: linear-gradient(180deg, #0f172a, #111827);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    color: #0f172a;
    background: #ffffff;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    outline: none;
}

.contact-link:focus {
    box-shadow: 0 0 0 3px var(--feature-icon), 0 4px 12px rgba(255,255,255,0.2);
}

.contact-link:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

footer {
    background: var(--footer-bg);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-text {
    opacity: 0.8;
    font-size: 0.9em;
}

/* Gallery Overlay Styles */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay.active {
    display: flex;
    opacity: 1;
}

.gallery-modal {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-overlay.active .gallery-modal {
    transform: scale(1);
}

.gallery-modal img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.gallery-modal-content {
    padding: 20px;
    text-align: center;
}

.gallery-modal-title {
    font-size: 1.4em;
    color: var(--main-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.gallery-modal-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95em;
}

.gallery-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.gallery-close:hover {
    background: white;
    transform: scale(1.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-item {
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for gallery overlay */
@media (max-width: 768px) {
    .gallery-modal {
        max-width: 95%;
        max-height: 95%;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-close {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 10px;
    }
    .gallery {
        gap: 20px;
    }
    .about-content {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .logo { font-size: 2em; }
    .hero-title { font-size: 1.5em; }
    .social-links, .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    header, .about-section, .hero-section, .contact-section {
        padding-left: 0;
        padding-right: 0;
    }
    .gallery-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .logo { font-size: 1.3em; }
    .hero-title { font-size: 1.1em; }
    .gallery-content, .feature {
        padding: 15px;
    }
    .gallery-item img {
        height: 120px;
    }
}
