/* ==========================================================================
   Lycanworks - Art Commissions
   A cozy corner of the internet ✨
   ========================================================================== */

/* Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: #fdf8f3;
    color: #5c4a3d;
    line-height: 1.8;
    font-size: 1.1rem;
}

h1, h2, h3, p, ul {
    margin: 0;
}

h1, h2, h3 {
    font-family: Georgia, serif;
    font-weight: 700;
}

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

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

a:hover {
    color: #d4a574;
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.hero-section {
    padding: 5rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, #f9ede3 0%, #fdf8f3 100%);
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(210, 165, 125, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(193, 122, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid #faf5ef;
    box-shadow: 
        0 8px 30px rgba(139, 90, 70, 0.15),
        0 0 0 2px rgba(210, 165, 125, 0.3);
}

.hero-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #5c4a3d;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.15rem;
    color: #9a8577;
    font-style: italic;
    margin-bottom: 2rem;
}

.primary-button {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #d4a574 0%, #c17a74 100%);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 1.05rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(193, 122, 116, 0.3);
    transition: all 0.3s ease;
}

.primary-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 122, 116, 0.4);
}

/* Sections */
.page-section {
    padding: 4rem 0;
}

.page-section--alt {
    background: #f9f3ec;
}

.page-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #5c4a3d;
    text-align: center;
    margin-bottom: 0.5rem;
}

.page-section h2::after {
    content: "~✦~";
    display: block;
    color: #d4a574;
    font-size: 0.9rem;
    margin: 0.75rem auto 0;
    opacity: 0.7;
}

.price-note {
    text-align: center;
    font-size: 1rem;
    color: #a8968a;
    font-style: italic;
    margin-bottom: 2.5rem;
}

/* Commission Types */
.commission-type {
    margin-bottom: 3rem;
}

.commission-type:last-child {
    margin-bottom: 0;
}

.commission-type h3 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #5c4a3d;
    margin-bottom: 1rem;
}

.commission-type .price {
    color: #c17a74;
}

.coming-soon {
    text-align: center;
    font-style: italic;
    color: #a8968a;
    padding: 1.5rem;
    background: #f5ebe0;
    border-radius: 10px;
    border: 2px dashed #d4c4b5;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.gallery img {
    width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 3px solid #f5ebe0;
    box-shadow: 0 4px 15px rgba(100, 70, 50, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(100, 70, 50, 0.15);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 30, 25, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #faf5ef;
    font-size: 2rem;
    font-family: Georgia, serif;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.section-intro {
    text-align: center;
    color: #7a6a5c;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.section-intro strong {
    color: #c17a74;
    font-size: 1.15rem;
}

/* TOS */
.tos-grid {
    max-width: 550px;
    margin: 2rem auto 0;
}

.tos-item {
    background: #faf5ef;
    border: 2px solid #eddfd2;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.tos-item summary {
    padding: 1rem 1.25rem;
    font-family: Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #5c4a3d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: all 0.3s ease;
}

.tos-item summary::-webkit-details-marker {
    display: none;
}

.tos-item summary::after {
    content: "▸";
    color: #d4a574;
    transition: transform 0.3s ease;
}

.tos-item[open] summary::after {
    transform: rotate(90deg);
}

.tos-item summary:hover {
    background: #fdf8f3;
}

.tos-item p {
    padding: 0 1.25rem 1.25rem;
    color: #7a6a5c;
    font-size: 1rem;
}

.tos-content {
    padding: 0 1.25rem 1.25rem;
    color: #7a6a5c;
    font-size: 1rem;
}

.tos-content ul {
    padding-left: 1.25rem;
    list-style: disc;
}

.tos-content li {
    margin-bottom: 0.6rem;
}

.tos-content li:last-child {
    margin-bottom: 0;
}

.tos-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #5c4a3d;
    margin: 1.25rem 0 0.5rem;
}

.tos-content h4:first-child {
    margin-top: 0;
}

.tos-content strong {
    color: #c17a74;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto 0;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #faf5ef;
    border: 2px solid #eddfd2;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 170px;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: #d4a574;
    box-shadow: 0 6px 20px rgba(139, 90, 70, 0.1);
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a8968a;
    margin-bottom: 0.3rem;
}

.contact-value {
    color: #5c4a3d;
    font-family: Georgia, serif;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 2.5rem 0;
    text-align: center;
    background: #f9ede3;
    border-top: 1px solid #f0e6dc;
}

footer p {
    font-size: 0.95rem;
    color: #a8968a;
}

.footer-note {
    font-size: 0.85rem;
    color: #c4b5a8;
    margin-top: 0.4rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-section {
        padding: 3.5rem 0 3rem;
    }

    .logo {
        width: 130px;
        height: 130px;
    }

    .hero-section h1 {
        font-size: 1.7rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .page-section {
        padding: 3rem 0;
    }

    .gallery img {
        max-width: 150px;
    }

    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 260px;
    }
}
