/* ============================================
   MareiChromatics Website Styles
   Corporate Identity Colors:
   - Soft Navy: #3B4C6B
   - Dusty Blue: #AFC4D8  
   - Blasses Rosa: #F3DCE2
   - Sanftes Malve: #C7AFC3
   - Warmes Off-White: #F9F8F6
   - Deep Charcoal: #2A2E35
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2A2E35;
    background-color: #F9F8F6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #3B4C6B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #3B4C6B 0%, #AFC4D8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 76, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 76, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3B4C6B;
    border: 2px solid #3B4C6B;
}

.btn-secondary:hover {
    background: #3B4C6B;
    color: white;
}

.btn.full-width {
    width: 100%;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(249, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(175, 196, 216, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 28px;
    color: #3B4C6B;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2A2E35;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3B4C6B;
}

.nav-link.cta-button {
    background: linear-gradient(135deg, #3B4C6B 0%, #AFC4D8 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #3B4C6B;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F9F8F6 0%, #F3DCE2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #3B4C6B;
}

.hero-subtitle-line {
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    color: #AFC4D8;
    display: block;
    margin-top: 10px;
}

.color-guide-highlight {
    font-style: italic;
    font-weight: 700;
    color: #3B4C6B;
    display: inline-block;
    line-height: 1.1;
    text-align: center;
    margin: 0 5px;
}

.hero-subtitle {
    font-size: 18px;
    color: #2A2E35;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-palette {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    animation: float 3s ease-in-out infinite;
}

.color-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.color-circle:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #3B4C6B;
}

.section-header p {
    font-size: 18px;
    color: #2A2E35;
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F9F8F6 0%, rgba(175, 196, 216, 0.1) 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B4C6B 0%, #AFC4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    transform: scale(0.8) rotateY(180deg);
    opacity: 0.7;
}

.feature-card.animate .feature-icon {
    transform: scale(1) rotateY(0deg);
    opacity: 1;
    animation: iconPulse 0.6s ease 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotateZ(15deg);
    box-shadow: 0 8px 25px rgba(59, 76, 107, 0.3);
}

@keyframes iconPulse {
    0% { transform: scale(1) rotateY(0deg); }
    50% { transform: scale(1.15) rotateY(0deg); }
    100% { transform: scale(1) rotateY(0deg); }
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3B4C6B;
}

.feature-card p {
    color: #2A2E35;
    opacity: 0.8;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #F3DCE2 0%, #C7AFC3 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #3B4C6B;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #2A2E35;
    line-height: 1.7;
}

.values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.value-item i {
    color: #3B4C6B;
    font-size: 20px;
}

.value-item span {
    font-weight: 500;
    color: #2A2E35;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #AFC4D8;
    backdrop-filter: blur(10px);
    border: 2px dashed #AFC4D8;
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 10px;
}

.about-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.02);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.service-card {
    background: linear-gradient(135deg, #F9F8F6 0%, rgba(175, 196, 216, 0.1) 100%);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3B4C6B;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #3B4C6B;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #2A2E35;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 40px;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2A2E35;
}

.service-features i {
    color: #3B4C6B;
    font-size: 16px;
}

.color-guide-preview {
    text-align: center;
}

.guide-pages {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    perspective: 1000px;
}

.guide-page {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #3B4C6B 0%, #AFC4D8 100%);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    animation: pageFlip 4s ease-in-out infinite;
}

.guide-page.page-2 {
    animation-delay: 0.5s;
}

.guide-page.page-3 {
    animation-delay: 1s;
}

@keyframes pageFlip {
    0%, 80%, 100% { transform: rotateY(0deg); }
    40% { transform: rotateY(180deg); }
}

/* Process Section */
.process {
    padding: 80px 0;
    background: linear-gradient(135deg, #AFC4D8 0%, #F3DCE2 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B4C6B 0%, #AFC4D8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3B4C6B;
}

.step p {
    color: #2A2E35;
    opacity: 0.8;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #F9F8F6 0%, rgba(243, 220, 226, 0.3) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 24px;
    color: #F4C842;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #2A2E35;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #3B4C6B;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #3B4C6B 0%, #2A2E35 100%);
    color: white;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.booking-info p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: #AFC4D8;
    font-size: 20px;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-container h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.price-display {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #AFC4D8;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #AFC4D8;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.payment-info {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Footer */
.footer {
    background: #2A2E35;
    padding: 60px 0 20px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #AFC4D8;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #AFC4D8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(175, 196, 216, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AFC4D8;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #AFC4D8;
    color: #2A2E35;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(175, 196, 216, 0.2);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .about-content,
    .service-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values {
        grid-template-columns: 1fr;
    }
    
    .about-photo {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle-line {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .form-container {
        padding: 30px 20px;
    }
    
    .price,
    .price-display {
        font-size: 36px;
    }
    
    .color-palette {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .color-circle {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle-line {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .feature-card,
    .step,
    .testimonial-card {
        padding: 30px 15px;
    }
    
    .nav-logo h1 {
        font-size: 24px;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .about-photo {
        width: 200px;
        height: 200px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F9F8F6;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3B4C6B 0%, #AFC4D8 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2A2E35 0%, #3B4C6B 100%);
}

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }

/* FAQ Preview Section */
.faq-preview {
    background: linear-gradient(135deg, #F9F8F6 0%, #E8E3E0 100%);
    padding: 80px 0;
}

.faq-preview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-preview-content h2 {
    font-size: 36px;
    color: #2A2E35;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-preview-content > p {
    font-size: 18px;
    color: #5A5A5A;
    margin-bottom: 40px;
    line-height: 1.6;
}

.common-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.question-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.question-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.question-item i {
    color: #AFC4D8;
    font-size: 20px;
    flex-shrink: 0;
}

.question-item span {
    color: #2A2E35;
    font-weight: 500;
    line-height: 1.4;
}

.faq-note {
    font-size: 16px;
    color: #5A5A5A;
    margin-bottom: 25px;
    font-weight: 500;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.faq-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-btn i {
    font-size: 18px;
}

/* Responsive FAQ Preview */
@media (max-width: 768px) {
    .faq-preview {
        padding: 60px 0;
    }
    
    .faq-preview-content h2 {
        font-size: 28px;
    }
    
    .common-questions {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .question-item {
        padding: 15px;
    }
    
    .question-item span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-preview-content h2 {
        font-size: 24px;
    }
    
    .faq-preview-content > p {
        font-size: 16px;
    }
    
    .question-item {
        padding: 12px;
        gap: 10px;
    }
    
    .question-item i {
        font-size: 18px;
    }
    
    .faq-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
} 