/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-magenta: #E91E63;
    --text-dark: #2c2c2c;
    --text-medium: #666666;
    --text-light: #999999;
    --background: #ffffff;
    --border-light: #e5e5e5;
    --notice-bg: #f8f9fa;
    --facebook-blue: #1877F2;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
}

.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    opacity: 0.95;
}

/* Notice Section */
.notice-section {
    background: var(--notice-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.notice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-magenta);
    border-radius: 0 0 3px 3px;
}

.notice-text {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about-section {
    margin-bottom: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.about-text {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
    font-style: italic;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-magenta);
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Hours */
.hours {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.hour-row span:first-child {
    color: var(--text-medium);
    font-weight: 400;
}

.hour-row span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-info a {
    color: var(--primary-magenta);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Social Section */
.social-section {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.facebook-link {
    color: var(--facebook-blue);
    border-color: var(--facebook-blue);
}

.facebook-link:hover {
    background: var(--facebook-blue);
    color: white;
}

.instagram-link {
    color: #E4405F;
    border-color: #E4405F;
}

.instagram-link:hover {
    background: var(--instagram-gradient);
    color: white;
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 400px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .logo-section {
        margin-bottom: 2.5rem;
    }
    
    .notice-section {
        padding: 1.2rem 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .about-section {
        margin-bottom: 3rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .notice-text {
        font-size: 0.95rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        max-width: 320px;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .notice-section {
        padding: 1rem 1.2rem;
    }
    
    .about-text,
    .notice-text {
        font-size: 0.9rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}

