* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: #050811;
    color: #f5f1e8;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(30, 58, 95, 0.12), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(45, 75, 120, 0.08), transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(20, 40, 70, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

header {
    background: rgba(5, 8, 17, 0.95);
    backdrop-filter: blur(15px);
    padding: 1.5rem 5%;
    box-shadow: 0 2px 30px rgba(30, 58, 95, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(70, 110, 160, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: #f5f1e8;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #e8e3d5;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8ab4f8, transparent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #f5f1e8;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    text-align: center;
    padding: 9rem 5% 7rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 180, 248, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.8rem;
    color: #f5f1e8;
    letter-spacing: 4px;
}

.hero p {
    font-size: 1.1rem;
    color: #d4cdb8;
    line-height: 1.9;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 4.5rem;
    text-align: center;
    color: #f5f1e8;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.artwork-image img,
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-card {
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(70, 110, 160, 0.25);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.artwork-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(70, 110, 160, 0.3),
                0 0 60px rgba(70, 110, 160, 0.15);
    border-color: rgba(70, 110, 160, 0.5);
}

.artwork-image {
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #0a1628;
}

.artwork-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.artwork-info {
    padding: 2.5rem;
    background: rgba(5, 8, 17, 0.7);
}

.artwork-title {
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
    color: #f5f1e8;
    letter-spacing: 1px;
    font-weight: 400;
}

.artwork-details {
    font-size: 1rem;
    color: #d4cdb8;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.artwork-price {
    font-size: 1.4rem;
    color: #6b9bd1;
    font-weight: 500;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: 12px;
    border: 1px solid rgba(70, 110, 160, 0.25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: #f5f1e8;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(70, 110, 160, 0.3);
    border-radius: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    background: rgba(5, 8, 17, 0.8);
    color: #f5f1e8;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(176, 196, 222, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b9bd1;
    background: rgba(5, 8, 17, 0.95);
    box-shadow: 0 0 20px rgba(70, 110, 160, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    background: #6b9bd1;
    color: #050811;
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(70, 110, 160, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(70, 110, 160, 0.6);
    background: #7fabd8;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    line-height: 2.1;
    color: #e8e3d5;
    font-size: 1.15rem;
}

footer {
    background: rgba(5, 8, 17, 0.97);
    color: #d4cdb8;
    text-align: center;
    padding: 2.5rem;
    margin-top: 7rem;
    border-top: 1px solid rgba(70, 110, 160, 0.2);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: rgba(10, 15, 25, 0.97);
    backdrop-filter: blur(25px);
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    border: 1px solid rgba(70, 110, 160, 0.35);
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #f5f1e8;
    background: rgba(70, 110, 160, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    border: 1px solid rgba(70, 110, 160, 0.4);
}

.modal-close:hover {
    background: rgba(70, 110, 160, 0.4);
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0a1628;
}

.modal-info {
    padding: 3rem;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #f5f1e8;
    letter-spacing: 1px;
    font-weight: 400;
}

.modal-info p {
    margin-bottom: 1.3rem;
    color: #e8e3d5;
    line-height: 2;
}

.inquiry-btn {
    background: #6b9bd1;
    color: #050811;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1.5rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(70, 110, 160, 0.4);
    font-weight: 600;
    text-transform: uppercase;
}

.inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(70, 110, 160, 0.6);
    background: #7fabd8;
}

    @media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.75rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }

    .artwork-image,
    .modal-image {
        height: 400px;
    }
}