@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* ========== Header Section ========== */
#header {
    padding: 60px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 10px;
    color: #2b2e4a;
    margin-bottom: 1rem;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c200c2;
    margin: 8px auto 0;
    border-radius: 2px;
}

#header h2 {
    font-size: 1.5rem;
    color: #555;
    font-weight: 500;
    margin-top: 1rem;
}

/* ========== Contact Section ========== */
#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-container {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    margin-right: 20px;
    margin-top: 3px;
    color: #c200c2;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: #555;
    word-wrap: break-word;
}

.contact-item a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word;
    font-weight: 500;
}

.contact-item a:hover {
    color: #c200c2;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.facebook {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
}

.facebook:hover {
    background: linear-gradient(135deg, #4c70ba 0%, #3b5998 100%);
}

.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.youtube:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

.email {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.email:hover {
    background: linear-gradient(135deg, #868e96 0%, #6c757d 100%);
}
/* ========== Footer Section ========== */
#footer {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-color: #c200c2;
}

.footer {
    background-color: #050505;
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 4px solid var(--brand-color);
}

.footer-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(12, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

.about-section {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .about-section {
        grid-column: span 5;
    }
}

.contact-section {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .contact-section {
        grid-column: span 3;
    }
}

.hours-section {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .hours-section {
        grid-column: span 4;
    }
}

.footer-title {
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-color);
    border-bottom: 1px solid #374151;
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.about-footer {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.625;
    max-width: 28rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-link {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--brand-color);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    color: #9ca3af;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--brand-color);
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2937;
    padding-bottom: 0.5rem;
}

.hours-day {
    font-weight: 500;
}

.hours-closed {
    color: var(--brand-color);
    font-weight: 500;
}

.hours-note {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.625;
    margin-top: 1.25rem;
}

.hours-note-label {
    color: var(--brand-color);
    font-weight: bold;
}

.footer-bottom {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-bottom {
        padding: 0 2rem;
    }
}

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

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}