﻿* {
    box-sizing: border-box;
}

.back-button {
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    margin-top: 10px;
    background-color: #f2f2f2;
    color: #333;
    border-radius: 4px;
}
.back-button-margin {
    margin-top: 10px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* or whatever fits your design */
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem;
}
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f1e9df, #ede6dc);
    color: #2a1e17;
    font-family: 'Merriweather', serif;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fcf8f4;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .about-container:hover {
        transform: translateY(-4px);
    }

.studio-title {
    font-size: 4rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #4d392d;
    font-family: 'Dancing Script', cursive;
}

.studio-tagline {
    font-size: 1.5rem;
    text-align: center;
    color: #7a6452;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.about-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #534134;
    border-bottom: 2px solid #dac7b3;
    padding-bottom: 0.3rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

blockquote {
    border-left: 4px solid #cbb9a2;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #5a4b3e;
    background-color: #f6f2eb;
    border-radius: 4px;
}

.home-intro {
    font-family: 'Georgia', serif;
    color: #eaeaea;
    background: linear-gradient(to bottom right, #1a1a1a, #2e2e2e);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 4rem auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    animation: fadeIn 2s ease-in;
}

    .home-intro h1 {
        font-size: 2.5rem;
        color: #c7b299;
        text-align: center;
        margin-bottom: 1rem;
    }

    .home-intro p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #ddd;
    }

    .home-intro .coming-soon {
        text-align: center;
        font-style: italic;
        color: #a0e0ff;
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}