:root {
    /* Color Palette */
    --clr-bg: #0d0d0d;
    --clr-bg-light: #161616;
    --clr-bg-lighter: #202020;
    
    --clr-text: #e6e6e6;
    --clr-text-muted: #a3a3a3;
    
    --clr-accent: #d4af37; /* Gold/Brushed Metal */
    --clr-accent-dark: #b5952f;
    --clr-accent-dim: rgba(212, 175, 55, 0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.highlight {
    color: var(--clr-accent);
}

.section-padding {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--clr-accent);
    color: #000;
    border-color: var(--clr-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--clr-accent);
    box-shadow: 0 0 20px var(--clr-accent-dim);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text);
    border-color: var(--clr-text-muted);
}

.btn-secondary:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background-color: var(--clr-accent-dim);
    box-shadow: 0 0 20px var(--clr-accent-dim);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.logo img {
    height: 85px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 65px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--clr-accent);
    transition: width 0.3s ease;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-text);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Offset for navbar */
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.85) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--clr-accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--clr-accent);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* --- Section Headers --- */
.subtitle {
    display: block;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.heading-line {
    width: 60px;
    height: 2px;
    background-color: var(--clr-accent);
    margin: 0 auto 20px;
}

.header-desc {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* --- About Section --- */
.about {
    background-color: var(--clr-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: 4px;
    box-shadow: -15px 15px 0 var(--clr-bg-lighter);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--clr-accent);
    color: #000;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content .section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--clr-text);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: var(--clr-accent);
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

/* --- Tjänster Section (Grid Flow) --- */
.services {
    background-color: var(--clr-bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--clr-bg-lighter);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
}

.service-icon img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(80%);
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    filter: grayscale(0%);
}

.service-content {
    padding: 30px 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--clr-accent);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.booking-cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 50px 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.03);
    margin: 30px auto 0;
    max-width: 1000px;
}

.cta-card-content h3 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 10px;
}

.cta-card-content p {
    color: #aaa;
    font-size: 1.05rem;
    max-width: 500px;
    line-height: 1.6;
}

.btn-gold-glow {
    background: var(--clr-accent);
    color: #000;
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    border: none;
    display: inline-block;
}

.btn-gold-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .booking-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .cta-card-content h3 {
        font-size: 1.8rem;
    }

    .cta-card-content p {
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Gallery Section --- */
.gallery {
    background-color: var(--clr-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
}

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

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

/* --- Footer --- */
.footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid var(--clr-bg-lighter);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--clr-text-muted);
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--clr-bg-lighter);
    border-radius: 50%;
    color: var(--clr-text);
}

.social-links a:hover {
    background-color: var(--clr-accent);
    color: #000;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--clr-accent);
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--clr-text-muted);
}

.contact-info i {
    color: var(--clr-accent);
    margin-top: 5px;
}

.contact-info a:hover {
    color: var(--clr-accent);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--clr-text-muted);
    border-bottom: 1px dashed var(--clr-bg-lighter);
    padding-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--clr-bg-lighter);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.footer-bottom .credits {
    margin-top: 10px;
    font-size: 0.8rem;
}

.footer-bottom .credits a:hover {
    color: var(--clr-accent);
}

/* --- Parallax Banners --- */
.parallax-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px 0;
}

.parallax-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8, 8, 8, 0.75);
}

.parallax-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.parallax-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--clr-accent);
    margin-bottom: 20px;
    font-weight: 700;
}

/* --- Premium Dark Lookbook Cards --- */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.premium-card {
    position: relative;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.03);
}

.premium-card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.premium-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.7) 40%, rgba(8,8,8,0.1) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

.premium-card:hover .premium-card-bg {
    transform: scale(1.08);
}

.premium-card:hover .premium-overlay {
    background: linear-gradient(to top, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.85) 50%, rgba(8,8,8,0.3) 100%);
}

.premium-info {
    position: relative;
    z-index: 3;
    padding: 40px 35px;
    width: 100%;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.premium-card:hover .premium-info {
    transform: translateY(0);
}

.premium-info h3 {
    font-size: 2.2rem;
    color: var(--clr-accent);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.premium-info p {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.premium-card:hover .premium-btn {
    color: var(--clr-accent);
}

.premium-btn i {
    transition: transform 0.3s;
}

.premium-card:hover .premium-btn i {
    transform: translateX(10px);
}

.full-link {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10;
}

@media (max-width: 992px) {
    .services-premium-grid {
        grid-template-columns: 1fr;
    }
    .premium-card {
        height: 400px;
    }
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    filter: blur(5px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.fade-left {
    transform: translateX(-60px);
}

.fade-right {
    transform: translateX(60px);
}

.scale-up {
    transform: scale(0.9);
}

.reveal.scale-up.active {
    transform: scale(1);
}

.reveal.fade-left.active, .reveal.fade-right.active {
    transform: translateX(0);
}

/* Specific Fade-in-up logic */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1000ms cubic-bezier(0.25, 0.8, 0.25, 1), transform 1000ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #0d0d0d;
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .nav-actions .btn-primary {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}
