/* ========================================
   Sukhadam Events - Main Stylesheet
   ======================================== */

/* CSS Variables - Royal Purple & White Theme */
:root {
    --royal-purple: #5B21B6;
    --purple-light: #7C3AED;
    --purple-bg: #6B21A8;
    --purple-bg-light: #8B5CF6;
    --white: #FFFFFF;
    --white-soft: #EDE9FE;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #F5F5F5;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--royal-purple);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar .logo {
    margin-left: -40px;
}

.logo h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--royal-purple);
    margin: 0;
    text-shadow: 0 2px 8px rgba(91, 33, 182, 0.35), 0 0 20px rgba(91, 33, 182, 0.15);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--royal-purple);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-purple);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--royal-purple);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--white);
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--white);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--royal-purple);
    color: var(--white);
    border-color: var(--royal-purple);
}

.btn-primary:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 33, 182, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--royal-purple);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #20BA57;
    transform: translateY(-2px);
}

/* ========================================
   Page Hero
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, var(--purple-bg), var(--purple-bg-light));
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 300;
}

/* ========================================
   Services Preview
   ======================================== */

.services-preview {
    padding: 80px 0;
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--royal-purple);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--royal-purple);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-card.with-image {
    color: var(--white);
    text-align: left;
}

.service-card.with-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(91, 33, 182, 0.75), rgba(0, 0, 0, 0.4)),
        var(--service-card-image, linear-gradient(135deg, var(--royal-purple), var(--purple-light)));
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.6s ease;
}

.service-card.with-image:hover::before {
    transform: scale(1.05);
}

.service-card.with-image .service-icon {
    color: var(--white);
}

.service-card.with-image .service-link {
    color: var(--white);
}

.service-card.with-image .service-link:hover {
    color: var(--white-soft);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--royal-purple);
}

.service-card p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.service-link {
    color: var(--royal-purple);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--royal-purple);
}

/* ========================================
   Testimonials
   ======================================== */

.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--gray-light);
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 4rem;
    color: var(--royal-purple);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-medium);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: var(--royal-purple);
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-bg), var(--purple-bg-light));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
}

/* ========================================
   About Page
   ======================================== */

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-medium);
    line-height: 1.8;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--white), var(--white-soft));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-purple);
    font-weight: 600;
    font-size: 1.2rem;
}

.about-story-img,
.service-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.philosophy-quote {
    text-align: center;
    margin: 50px 0;
}

.quote-text {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--royal-purple);
    font-style: italic;
    line-height: 1.6;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.philosophy-point {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.philosophy-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.point-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.philosophy-point h3 {
    margin-bottom: 15px;
    color: var(--royal-purple);
}

.philosophy-point p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.experience-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    color: var(--gray-dark);
    border-radius: 10px;
    border: 2px solid rgba(91, 33, 182, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(91, 33, 182, 0.12);
    border-color: rgba(91, 33, 182, 0.3);
}

.experience-number {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--royal-purple);
    font-weight: 700;
    margin-bottom: 15px;
}

.experience-card h3 {
    color: var(--royal-purple);
    margin-bottom: 10px;
}

.experience-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* ========================================
   Services Page
   ======================================== */

.services-full {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 100px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: "Segoe UI Emoji", "Apple Color Emoji", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.service-detail-content h2 {
    margin-bottom: 20px;
    color: var(--royal-purple);
}

.service-detail-content p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray-medium);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   Gallery Page
   ======================================== */

.gallery-section {
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--gray-light);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--royal-purple);
    color: var(--white);
    border-color: var(--royal-purple);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    grid-auto-rows: 300px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-bg), var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(91, 33, 182, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 0.9rem;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-form-wrapper h2,
.contact-info-card h2 {
    margin-bottom: 15px;
    color: var(--royal-purple);
}

.contact-form-wrapper p {
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-purple);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info-card {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 10px;
    height: fit-content;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-detail h3 {
    margin-bottom: 5px;
    color: var(--royal-purple);
    font-size: 1.2rem;
}

.contact-detail p {
    color: var(--gray-medium);
}

.contact-detail a {
    color: var(--royal-purple);
}

.contact-detail a:hover {
    color: var(--royal-purple);
}

.whatsapp-contact {
    margin: 30px 0;
}

.business-hours {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(91, 33, 182, 0.2);
}

.business-hours h3 {
    margin-bottom: 20px;
    color: var(--royal-purple);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: var(--gray-medium);
}

.map-section {
    margin-top: 60px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-note {
    text-align: center;
    margin-top: 15px;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--royal-purple);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray-medium);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--royal-purple);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 33, 182, 0.1);
    border-radius: 50%;
    color: var(--royal-purple);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--royal-purple);
    color: var(--white);
    transform: translateY(-3px);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #20BA57;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--gray-medium);
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    /* Navigation */
    .navbar .logo {
        margin-left: 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 50px 20px;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Page Hero */
    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    /* Sections */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Grids */
    .services-grid,
    .testimonials-grid,
    .philosophy-points,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-form-wrapper,
    .contact-info-card {
        padding: 30px 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

