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

/* Base styles */
:root {
    --primary-color: #ffbf37;
    --background-color: #3b251a;
    --light-bg: #f5f4f1;
    --text-color: #7c6f68;
    --light-text: #fff;
    --input-bg: #f2f6fa;
            --border-color: #f2f6fa;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.eb-garamond-heading {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

.menu-routes {
    width: 100%;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.menu-item {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    background-color: #f6f4f4;
}
#active {
    background-color: #ff7f2a;
    color: white;
}
.menu-item:hover {
    background-color: #ddd;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background-color: var(--background-color);
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 7px 20px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #d5ad58;
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.header.scrolled .menu-btn {
    color: var(--light-text);
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.menu-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
  }
  
  .carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-slide {
    min-width: 100%;
    position: relative;
    text-align: center;
    color: #fff;
  }
  
  .carousel-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .carousel-dots {
    margin-top: 20px;
  }
  
  .carousel-dots .dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .carousel-dots .dot.active {
    background-color: #fff;
  }
  
  

/* Mobile Menu */
.menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    z-index: 1100;
    padding: 40px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.menu.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}

.menu-links li {
    margin-bottom: 20px;
}

.menu-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: var(--background-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/background/16.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content .logo{
    margin-bottom: 20px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Banner section */
.banner {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/background/16.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
}

.banner-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-title {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 500;
}

.banner-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
    font-weight: 500;
}
/* banner section */

.cta-btn {
    display: inline-block;
    border: 1px solid white;
    padding: 7px 20px;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 20px;
}

.cta-btn:hover {
    background-color: white;
    color: #333;
}

/* WhatsApp button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: rgba(145, 126, 87, 0.9);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 100;
}

.whatsapp-icon {
    margin-right: 10px;
}

/* Destination section */
.destination {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.destination-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.destination-content {
    flex: 1;
    padding-right: 60px;
    min-width: 300px;
}

.destination-images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    min-width: 300px;
}

.destination-image {
    border-radius: 10px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-image:hover img {
    transform: scale(1.05);
}

.destination-image.tall {
    flex: 1;
    height: 500px;
}

.destination-image.wide {
    flex: 2;
    height: 300px;
}

.subtitle {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.title {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 600;
}

.dots {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #dab15d;
    border-radius: 50%;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 7px 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: #dab15d;
    color: white;
    border: none;
}

.btn-outline {
    font-size: 15px;
    border: 1px solid #333;
    color: #333;
}

.btn:hover {
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #fff;
    border-radius: 5px;
}

.contact-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: #ff4d4d;
}

.contact-section
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background-color: var(--input-bg);
    font-family: var(--font-body);
    font-size: 16px;
}

textarea {
    height: 150px;
    resize: vertical;
    border-radius: 15px;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    flex: 0 0 180px;
}

.phone-group input {
    flex: 1;
}

.radio-group {
    margin-top: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.radio-option input[type="radio"] {
    margin-right: 10px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #8e7a47;
}

@media (max-width: 768px) {
    .phone-group {
        flex-direction: column;
    }
    
    .phone-group select {
        flex: unset;
        width: 100%;
    }
}

/* Feature section */
.featured {
    padding: 80px 0;
    background-color: #f9f7f4;
}

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

.featured-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.featured-item {
    text-align: left;
}

.featured-icon {
    width: 60px;
    height: 60px;
    background-color: #dab15d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.featured-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.featured-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Serengeti section */
.serengeti {
    padding: 100px 0;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
}

.serengeti-content {
    flex: 1;
    padding: 40px;
    min-width: 300px;
}

.serengeti-image {
    flex: 1;
    min-height: 400px;
    background: url('../images/Sanga\ images/new/6.jpg') center/cover no-repeat;
    min-width: 300px;
}

/* Menu */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background-color: #f9f7f4;
    z-index: 200;
    transition: right 0.5s;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.menu.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.menu-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-close {
    cursor: pointer;
    font-size: 24px;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-link {
    font-size: 18px;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-link:hover {
    color: #dab15d;
}

.menu-social {
    margin-top: auto;
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 24px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 150;
    display: none;
}

.overlay.active {
    display: block;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .title {
        font-size: 36px;
    }

    .destination-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .destination-container,
    .serengeti {
        flex-direction: column;
    }

    .menu {
        width: 100%;
    }
}

/* Popular Safari Packages Section */
.popular-safaris {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.activity-grid {
    margin-top: 50px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two equal columns */
    gap: 30px;
    /* Space between items */
}

/* Activity cards */
.activity-card {
    max-width: 300px;
    /* Reduce the width */
    height: 350px;
    /* Reduce the height */
    margin: auto;
    /* Center the card */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.activity-img {
    height: 150px;
    /* Reduce the image height */
    background-size: cover;
    background-position: center;
}

.activity-content {
    padding: 15px;
    text-align: center;
}

.activity-content h3 {
    font-size: 18px;
    /* Reduce title size */
}

.activity-content p {
    font-size: 14px;
    /* Reduce text size */
}

/* Activity cards */

/* Destination */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    height: 470px;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-title {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 32px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%);
}


.safari-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 15px;
}

.trekking-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 15px;
}

.safari-card {
    height: 500px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.safari-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.safari-content {
    padding: 25px;
}

.safari-content h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.safari-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.safari-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.safari-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.safari-days {
    color: #666;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: 15px;
}

.btn:hover {
    background-color: #dab15d;
    color: #fff;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    padding: 30px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: var(--text-color);
}

.testimonial-location {
    color: #888;
    font-size: 0.9rem;
}

.cta-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/Sanga\ images/new/12.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 50px;
    padding: 20px;
}

.cta2-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../images/New/mlimani-juu-1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-main {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: white;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-main:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.whatsapp-chat {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: rgba(99, 79, 48, 0.8);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.whatsapp-chat:hover {
    background-color: rgba(99, 79, 48, 1);
}

.whatsapp-chat svg {
    margin-right: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    .whatsapp-chat {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
    }
}

/* Footer */
.footer {
    background-color: var(--background-color);
    color: var(--light-text);
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 500;
}

.footer-column p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-column i {
    color: #fff;
    font-size: 16px;
}

.contact-info {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

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

.social-icon img {
    width: 20px;
    height: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.whatsapp-chat {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.whatsapp-chat:hover {
    background-color: #dab15d;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #dab15d;
}

.booking-steps {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.step-grid {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 10px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 2rem;
    color: #e0e0e0;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    font-size: 5rem;
    color: #e0e0e0;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .step-grid {
        grid-template-columns: 1fr;
    }

    .safari-grid {
        grid-template-columns: 1fr;
    }
}