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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #4B5B8C;
    background-color: #F5F2E8;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #2C3E50;
}

h1 { 
    font-size: 2.5rem; 
    margin-bottom: 2rem;
}

h2 { 
    font-size: 2rem; 
    margin-bottom: 1.5rem;
    color: #D2766F;
}

h3 { 
    font-size: 1.5rem; 
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Links */
a {
    color: #D2766F;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #C86A63;
}

/* Buttons */
.btn, .order-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #D2766F;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn:hover, .order-btn:hover {
    background: #C86A63;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F2E8 0%, #E8DCC6 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(210, 118, 111, 0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero .logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.brand-text {
    text-align: left;
}

.brand-name {
    color: #4B5B8C;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1.1;
}

.hero .tagline {
    color: #5A6B7D;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

.hero-description {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-description p {
    color: #4B5B8C;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Sections */
section.centered {
    text-align: center;
}

section.centered .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.centered h2 {
    text-align: center;
}

section {
    padding: 4rem 0;
}

.about {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F6F0 100%);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5A6B7D;
}

.collections {
    background: #F5F2E8;
    text-align: center;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.collection-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.collection-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.collection-card h3 {
    color: #4B5B8C;
    margin-bottom: 1rem;
}

.collection-card p {
    color: #5A6B7D;
    font-size: 0.95rem;
}

.memories {
    background: linear-gradient(135deg, #F8F6F0 0%, #F5F2E8 100%);
    text-align: center;
}

/* Memory Showcase */
.memory-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.memory-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.memory-image {
    flex: 0 0 320px;
}

.memory-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.memory-text {
    flex: 1;
    text-align: left;
}

.memory-text h3 {
    color: #4B5B8C;
    margin-bottom: 1rem;
}

.memory-text p {
    color: #5A6B7D;
    line-height: 1.6;
}

.music {
    background: #FFFFFF;
    text-align: center;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.playlist-card {
    background: #F5F2E8;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cassette-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.playlist-card h3 {
    color: #4B5B8C;
    margin-bottom: 1rem;
}

.playlist-card p {
    color: #5A6B7D;
    font-size: 0.95rem;
}

.galleries {
    background: linear-gradient(135deg, #F5F2E8 0%, #E8DCC6 100%);
    text-align: center;
}

/* Photo Galleries */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Essays */
.essays {
    background: #F8F6F0;
    text-align: center;
}

.essay-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.essay-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    text-align: left;
}

.essay-item h3 {
    color: #4B5B8C;
    margin-bottom: 1rem;
}

.essay-item p {
    color: #5A6B7D;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #D2766F;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #C86A63;
}

/* Products */
.products {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F2E8 100%);
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card h3 {
    color: #4B5B8C;
    padding: 1rem 1rem 0;
    margin-bottom: 1rem;
}

.product-card p {
    color: #5A6B7D;
    padding: 0 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D2766F;
    margin: 1rem 0;
}

.order-btn {
    background: #D2766F;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem;
    font-size: 0.95rem;
}

.order-btn:hover {
    background: #C86A63;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Membership */
.membership {
    background: #F5F2E8;
    text-align: center;
}

.membership-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.membership-text {
    flex: 1;
}

.membership-text h3 {
    color: #4B5B8C;
    margin-bottom: 1rem;
}

.membership-text p {
    color: #5A6B7D;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.membership-pricing {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #F5F2E8;
    border-radius: 8px;
    min-width: 140px;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #D2766F;
    margin-bottom: 0.5rem;
}

.price-desc {
    font-size: 0.9rem;
    color: #4B5B8C;
}

.membership-features {
    flex: 0 0 300px;
}

.membership-features ul {
    list-style: none;
    padding: 0;
}

.membership-features li {
    color: #5A6B7D;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E8DCC6;
}

.membership-features li:before {
    content: "✓";
    color: #D2766F;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contacts */
.contacts {
    background: #FFFFFF;
    padding: 4rem 0;
}

.contacts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #F5F2E8;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D2766F;
    border-radius: 50%;
}

.contact-item h3 {
    color: #4B5B8C;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #5A6B7D;
    margin: 0;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: #4B5B8C;
    color: #F5F2E8;
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    margin-bottom: 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column h4 {
    color: #F5F2E8;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-column a {
    color: #F5F2E8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #D2766F;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 242, 232, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(245, 242, 232, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #FFFFFF;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #D2766F;
}

.modal h2 {
    color: #4B5B8C;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4B5B8C;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E8DCC6;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D2766F;
}

.modal button[type="submit"] {
    background: #D2766F;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal button[type="submit"]:hover {
    background: #C86A63;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .brand-text {
        text-align: center;
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
    
    .hero-description {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .collection-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .playlist-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .memory-item {
        flex-direction: column;
        text-align: center;
    }
    
    .memory-image {
        flex: none;
        width: 100%;
        max-width: 320px;
    }
    
    .membership-content {
        flex-direction: column;
        padding: 2rem;
    }
    
    .membership-pricing {
        justify-content: center;
    }
    
    .membership-features {
        flex: none;
        width: 100%;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.8rem;
    }
    
    .hero-description {
        padding: 1rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .gallery-preview {
        grid-template-columns: 1fr;
    }
    
    .memory-item {
        padding: 1.5rem;
    }
    
    .memory-image {
        max-width: 280px;
    }
    
    .memory-image img {
        height: 180px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .membership-pricing {
        flex-direction: column;
        gap: 1rem;
    }
    
    .membership-content {
        padding: 1.5rem;
    }
}