@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;
}

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/Images/home.png') no-repeat center center/cover;
    color: white;
    min-height: 600px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h3 {
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #c200c2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.hero h2 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.4s ease;
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.1rem;
    color: white;
    background-color: #c200c2;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(194, 0, 194, 0.3);
    animation: fadeInUp 1.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Offers Section ========== */
#offers {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.offers {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.offers:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(194, 0, 194, 0.15);
}

.offers:last-child {
    margin-bottom: 0;
}

.reverse {
    flex-direction: row-reverse;
}

.offers-text, .reverse-text {
    flex: 1;
    padding: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2b2e4a;
    position: relative;
    padding-bottom: 15px;
}

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

.offers-text p, .reverse-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.offers-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offers-img img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.offers-img img:hover {
    transform: scale(1.03);
}
/* ========== 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;
}