/* Jantuf Photography Studio - Styles */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* CSS Variables - Color Palette */
:root {
    /* Background Colors */
    --gallery-white: #FEFEFE;
    --warm-cream: #F5F3EF;
    --slate-charcoal: #2C3338;
    --soft-beige: #E8E4DF;
    
    /* Accent Colors */
    --coral-pink: #FF6B9D;
    --teal-cyan: #00B4D8;
    --sunset-orange: #FF9F1C;
    --lavender-purple: #B8A4C9;
    
    /* Contrast & Support Colors */
    --pure-white: #FFFFFF;
    --deep-black: #1A1A1A;
    --warm-gray: #757575;
    --light-divider: #E0DDD8;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Source Sans Pro', sans-serif;
    
    /* Spacing */
    --section-padding: 140px;
    --border-radius: 24px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--deep-black);
    background-color: var(--gallery-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--deep-black);
}

h1 {
    font-size: 4rem;
    font-weight: 700;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    color: var(--warm-gray);
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

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

/* Header */
header {
    background-color: var(--pure-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-black);
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--coral-pink);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav a {
    font-weight: 600;
    color: var(--warm-gray);
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--coral-pink);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--coral-pink);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--deep-black);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--gallery-white) 100%);
}

.hero > .container-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero > .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    animation: fadeInArtistic 1s ease-out;
    width: 100%;
    max-width: 600px;
    text-align: left;
}

.hero-slogan {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--coral-pink), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.3rem;
    color: var(--warm-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: galleryReveal 1.2s ease-out;
    width: 100%;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral-pink), var(--sunset-orange));
    color: var(--pure-white);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background-color: var(--teal-cyan);
    color: var(--pure-white);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--coral-pink);
    color: var(--coral-pink);
}

.btn-outline:hover {
    background-color: var(--coral-pink);
    color: var(--pure-white);
}

/* Section Styles */
section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background-color: var(--warm-cream);
}

.section-dark {
    background-color: var(--slate-charcoal);
    color: var(--pure-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--pure-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.hero .section-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--warm-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background-color: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--light-divider);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--coral-pink), var(--sunset-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.15);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-cyan), var(--lavender-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--pure-white);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.card p {
    margin-bottom: 20px;
}

.card-arrow {
    color: var(--coral-pink);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover .card-arrow {
    transform: translateX(5px);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.badge-coral {
    background-color: var(--coral-pink);
    color: var(--pure-white);
}

.badge-teal {
    background-color: var(--teal-cyan);
    color: var(--pure-white);
}

.badge-lavender {
    background-color: var(--lavender-purple);
    color: var(--pure-white);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    animation: fadeInArtistic 0.8s ease-out;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral-pink), var(--sunset-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--pure-white);
}

.feature-item h4 {
    margin-bottom: 10px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.step {
    position: relative;
    padding: 40px;
    background-color: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal-cyan), var(--lavender-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
}

.step h4 {
    margin-bottom: 15px;
    margin-top: 20px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    padding: 40px;
    background-color: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.15);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--soft-beige), var(--light-divider));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--warm-gray);
}

.team-photo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 25px;
    object-fit: cover;
    border: 4px solid var(--light-divider);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.team-member h4 {
    margin-bottom: 10px;
}

.team-role {
    color: var(--coral-pink);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-quote {
    font-style: italic;
    color: var(--warm-gray);
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--pure-white);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid var(--light-divider);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--deep-black);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--coral-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 20px;
}

/* Forms */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--pure-white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--deep-black);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-divider);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--gallery-white);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--coral-pink);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, var(--teal-cyan), var(--lavender-purple));
    color: var(--pure-white);
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    animation: fadeInArtistic 0.5s ease-out;
}

.success-message.show {
    display: block;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background-color: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral-pink), var(--sunset-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--pure-white);
}

.contact-item h4 {
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--coral-pink);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Map */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: 60px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background-color: var(--slate-charcoal);
    color: var(--pure-white);
    padding: 80px 0 30px;
}

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

.footer-section h3 {
    color: var(--pure-white);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--pure-white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: var(--coral-pink);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--coral-pink), var(--sunset-orange));
    color: var(--pure-white);
}

.cta-section h2 {
    color: var(--pure-white);
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-section .btn {
    background-color: var(--pure-white);
    color: var(--coral-pink);
}

.cta-section .btn:hover {
    background-color: var(--slate-charcoal);
    color: var(--pure-white);
}

/* Animations */
@keyframes fadeInArtistic {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes galleryReveal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes creativeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-slogan {
        font-size: 3.5rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--pure-white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-slogan {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero > .container-wide {
        display: flex;
        flex-direction: column;
    }

    /* Leistungen page - stack service cards vertically on mobile */
    section .container > div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    section .container > div[style*="grid-template-columns: 1fr 1fr"] > div[style*="order"] {
        order: 0 !important;
    }

    .legal-content h1, .legal-content h2 {
        font-size: 2rem;
    }
}
