/* === VARIABLES === */
:root {
    --dark: #2c2c2c;
    --light: #f8f8f8;
    --accent: #2c2c2c;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

/* Dark theme for gallery and shop pages */
.gallery-page,
.shop-page {
    background-color: var(--dark);
    color: var(--light);
}

.gallery-page .container,
.shop-page .container {
    color: var(--light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === MINIMAL NAVIGATION === */
.minimal-nav,
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.site-title,
.logo {
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 400;
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-links,
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a,
.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

/* === HOME PAGE === */
.home-page {
    overflow-x: hidden;
}

.home-page .minimal-nav {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    box-shadow: none;
}

.home-page .site-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.home-page .nav-links a {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* === HERO SECTIONS === */
.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('startpage/desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    text-align: center;
}

/* === TAGLINE === */
.tagline {
    margin: 2rem 0 3rem;
    animation: fadeInDown 1s ease-out;
}

.tagline h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1.5;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 1px;
}

/* === PRODUCT SHOWCASE GRID === */
.product-showcase {
    margin: 4rem auto;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.showcase-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.showcase-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

/* === WELCOME TEXT === */
.welcome-text {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: fadeInUp 1.5s ease-out 1s both;
    margin-bottom: 0;
}

.welcome-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
}

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

.gallery-section,
.shop-section {
    padding: 2rem 0 4rem;
}

/* === GALLERY GRID === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.loading {
    text-align: center;
    padding: 4rem;
    color: #999;
    font-size: 1.2rem;
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 3rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
}

/* === SHOP STYLES === */
.shop-info,
.products {
    margin-bottom: 4rem;
}

.shop-info h2,
.products h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.info-card {
    text-align: center;
    padding: 2rem;
}

.info-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image .image-placeholder {
    font-size: 4rem;
}

.product-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    color: var(--dark);
}

.product-desc {
    padding: 0 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.product-price {
    padding: 0.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #b55f54;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 112, 100, 0.3);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.product-card .btn {
    margin: 1rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

/* === CONTACT FORM === */
.contact-section {
    max-width: 700px;
    margin: 4rem auto 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-section h2 {
    margin-bottom: 0.5rem;
}

.contact-section > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.swish-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light);
    border-radius: 8px;
    text-align: center;
}

.swish-info h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.swish-info strong {
    color: var(--accent);
    font-size: 1.3rem;
}

.swish-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.success-message {
    padding: 1rem;
    background: #6b8e7f;
    color: var(--white);
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

/* === FOOTER === */
.minimal-footer,
footer {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #6b8e7f;
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--accent);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .tagline h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .minimal-nav,
    .navbar {
        padding: 1rem;
    }
    
    .site-title,
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-links,
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-links a,
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .hero-background {
        background-image: url('startpage/mobile.png');
    }
    
    .hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    margin-bottom: 0;
}
    
    .page-hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .tagline h2 {
        font-size: 1.6rem;
    }
    
    .page-title h1 {
        font-size: 2.5rem;
    }
    
    .welcome-text {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: fadeInUp 1.5s ease-out 1s both;
    margin-bottom: 0;
}
    
    .welcome-text p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .contact-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .nav-links,
    .nav-menu {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tagline h2 {
        font-size: 1.4rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .showcase-grid {
        gap: 0.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}


.gallery-page .minimal-footer,
.shop-page .minimal-footer {
    background: #1a1a1a;
    border-top: 1px solid #3a3a3a;
}


.dark-nav .site-title {
    color: #ffffff !important;
}

.dark-nav .nav-links a {
    color: #ffffff !important;
}

.dark-nav .nav-links a:hover,
.dark-nav .nav-links a.active {
    color: var(--accent) !important;
}

/* === DARK THEME OVERRIDES === */
.gallery-page .loading,
.shop-page h2,
.shop-page h3,
.shop-page p {
    color: var(--light);
}

.shop-page .info-card,
.shop-page .product-card,
.shop-page .contact-section,
.shop-page .swish-info {
    background: #3a3a3a;
    color: var(--light);
}

.shop-page .product-card h3,
.shop-page .info-card h3 {
    color: var(--light);
}

.shop-page .product-desc {
    color: #ccc;
}

.shop-page .form-group label {
    color: var(--light);
}

.shop-page .form-group input,
.shop-page .form-group textarea {
    background: #3a3a3a;
    border-color: #555;
    color: var(--light);
}

.shop-page .swish-info {
    background: #3a3a3a;
}

.gallery-page .gallery-item,
.shop-page .product-image {
    background: #3a3a3a;
}


.home-page .minimal-footer {
    margin-top: 0;
}
/* === DYNAMIC PRODUCT IMAGES === */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    margin: 1rem 0 0.5rem;
}

/* === SECONDARY BUTTON === */
.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

/* Dark theme secondary button - always visible */
.shop-page .btn-secondary {
    background: var(--accent) !important;
    color: var(--white) !important;
    border: 2px solid var(--accent) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.shop-page .btn-secondary:hover {
    background: #e9e9ed !important;
    color: #2c2c2c !important;
    border: 2px solid #e9e9ed !important;
}

.shop-page .btn-primary:hover {
    background: #e9e9ed !important;
    color: #2c2c2c !important;
}

/* Simple nav spacing adjustment */
.dark-nav {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
