:root {
    --primary-color: #25D366;
    /* WhatsApp Green */
    --primary-hover: #1EBE5A;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.025);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 30px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius-lg: 16px;
    --transition-fast: 0.2s ease-out;
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: rgba(255, 255, 255, 1);
    /* Make it solid instead of transparent blur so image doesn't sit underneath */
    position: relative;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 4px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-divider {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 300;
    line-height: 1;
    user-select: none;
}

.met-logo {
    height: 65px;
}

.logo-img {
    height: 85px;
    /* Adjust height based on preference */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

/* Smooth scroll offset for sticky header */
#enquiry,
#amenities,
#opportunities,
#contact {
    scroll-margin-top: 165px;
}

/* Hero Section */
.hero {
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    margin: 0 auto;
}

/* About Us Section */
.about-section {
    padding: 60px 24px;
    margin-bottom: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: -30px;
    /* Slight overlap for styling */
    position: relative;
    z-index: 10;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* About Us Section (Bottom) */
.about-us-section {
    padding: 60px 24px;
    margin-bottom: 80px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
}

/* Enquiry Section */
.enquiry-section {
    width: 100%;
    padding: 40px 24px;
    box-sizing: border-box;
    overflow: hidden;
}

.enquiry-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.enquiry-card {
    flex: 1 1 200px;
    min-width: 0;
    /* ← critical, allows cards to shrink below 260px */
    max-width: 280px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.enquiry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.enquiry-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.enquiry-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.enquiry-card:hover .enquiry-image-container img {
    transform: scale(1.05);
}

.enquiry-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
}

.enquiry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.enquiry-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.enquiry-card:hover .enquiry-btn {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.enquiry-btn svg {
    display: block;
}

/* Amenities Section */
.amenities-section {
    padding: 60px 24px;
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

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

.amenity-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.amenity-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 211, 102, 0.2);
    /* Subtle touch of brand color on hover */
}

.amenity-icon {
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(37, 211, 102, 0.1);
    /* Light green background for icons */
    border-radius: 50%;
}

.amenity-custom-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    /* Match the circular shape of emoji icons */
    background-color: #fff;
    /* In case the logo is transparent/needs contrast */
    padding: 8px;
    /* Give the logo some breathing room within the circle */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Soft shadow for depth */
}

.amenity-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.3;
}

/* Projects Section */
.projects-section {
    margin-bottom: 80px;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
}

.project-card {
    flex: 1 1 260px;
    max-width: 320px;
    width: 100%;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Coming Soon Card */
.coming-soon-card {
    pointer-events: none;
    cursor: default;
    opacity: 0.9;
}

.coming-soon-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-md) !important;
}

.coming-soon-card:hover .enquiry-image-container img,
.coming-soon-card:hover .project-image {
    transform: none !important;
}

.coming-soon-card:hover .enquiry-btn {
    background-color: var(--primary-color) !important;
    transform: none !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3) !important;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.coming-soon-badge {
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    padding: 10px 28px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-btn {
    background-color: #94a3b8 !important;
    box-shadow: none !important;
    cursor: default;
    opacity: 0.85;
}

.project-image-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.badge.new-launch {
    background-color: #3b82f6;
    /* premium blue */
}

.badge.resale {
    background-color: #ef4444;
    /* premium red */
}

.project-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.project-location {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.5;
}

.project-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.project-features li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.feature-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 2px;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #166534;
    /* darker green for contrast as in image */
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 24px;
    border-radius: 8px;
    /* Slightly different from the pill buttons */
    text-decoration: none;
    transition: var(--transition-fast);
    width: 100%;
}

.project-btn:hover {
    background-color: #14532d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 101, 52, 0.3);
}

/* Location Section */
.location-section {
    margin-bottom: 80px;
}

.location-container {
    background-color: #2b6cb0;
    /* Professional blue matching the reference image */
    border-radius: var(--radius-lg);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 350px;
}

.location-details {
    flex: 0 0 25%;
    padding: 48px 32px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details-right {
    text-align: left;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.location-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.location-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0.95;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    color: #2b6cb0;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    align-self: flex-start;
}

.map-link-btn:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-map {
    flex: 0 0 50%;
    min-height: 350px;
    align-self: stretch;
}

/* Quick Contact Section */
.contact-links-section {
    margin-bottom: 80px;
}

.contact-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.contact-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-link-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--bg-main);
    transition: var(--transition-fast);
}

.contact-custom-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 50%;
    background-color: var(--bg-main);
    padding: 12px;
    /* Adjust padding to fit the icon inside the circle properly */
    transition: var(--transition-fast);
}

.contact-custom-icon.insta-icon {
    object-fit: cover;
    padding: 0;
    /* Instagram logo is usually square and filled */
}

.contact-link-item.whatsapp:hover .contact-icon,
.contact-link-item.whatsapp:hover .contact-custom-icon {
    background-color: #25D366;
}

.contact-link-item.phone:hover .contact-icon {
    background-color: #3b82f6;
    color: white;
}

/* Remove color: white as it's an image */

.contact-link-item.email:hover .contact-icon {
    background-color: #ef4444;
    color: white;
}

.contact-link-item.instagram:hover .contact-icon,
.contact-link-item.instagram:hover .contact-custom-icon {
    background-color: #db2777;
    transform: scale(1.05);
    /* Slight zoom for image */
}

.contact-label {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-detail {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Go To Top Button */
.go-top-btn {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9998;
    width: 48px;
    height: 48px;
    background-color: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}

.go-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.go-top-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: white;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 16px;
}

.footer-agent {
    text-align: left;
    flex: 0 0 auto;
}

.footer-agent-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-agent-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.footer-agent-rera {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-disclaimer {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.footer-disclaimer h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-disclaimer p {
    max-width: 320px;
    margin-left: auto;
    line-height: 1.5;
}


.footer p {
    margin-bottom: 8px;
}

.footer-contact {
    margin-top: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.footer-contact:hover {
    color: var(--text-main);
}

/* Minimalist loading animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nav-link {
        font-size: 0.95rem;
    }

    .main-nav {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        /* using default row flex from main class, allow wrap if needed */
        flex-wrap: wrap;
    }

    .header {
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 16px;
        margin-top: 0;
        border-top: 1px solid rgba(0, 0, 0, 0);

        /* Smooth transition setup */
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding-top: 0;
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding-top 0.3s ease, margin-top 0.3s ease, border-color 0.3s ease;
    }

    .main-nav.active {
        max-height: 300px;
        /* Arbitrary large enough height */
        opacity: 1;
        padding-top: 16px;
        margin-top: 8px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .logo-img {
        height: 55px;
    }

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

    .hero {
        height: 400px;
    }

    .card,
    .project-card {
        max-width: 450px;
    }

    .action-button,
    .project-btn {
        padding: 18px 32px;
        /* Marginally larger touch target */
    }

    .location-container {
        flex-direction: column;
    }

    .location-details {
        padding: 32px 24px;
        flex: none;
        width: 100%;
    }

    .location-details-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .location-map {
        min-height: 250px;
        flex: none;
        width: 100%;
    }

    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }

    .footer-agent {
        text-align: center;
    }

    .footer-disclaimer {
        text-align: center;
    }

    .footer-disclaimer p {
        margin-left: auto;
        margin-right: auto;
    }
}

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

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .container {
        padding: 0 16px;
    }

    .card-content,
    .project-content {
        padding: 24px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 32px;
    }

    .enquiry-section,
    .projects-section,
    .location-section,
    .contact-links-section {
        margin-bottom: 40px;
    }

    .amenities-section {
        padding: 40px 16px;
        margin-bottom: 40px;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo {
        gap: 10px;
    }

    .amenities-grid,
    .contact-links-grid {
        grid-template-columns: 1fr;
    }
}
