/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .secondGel {
        display: none !important;
    }
    
    /* Hide extra gallery items on homepage mobile view */
    .home-gallery .mobile-gallery-item {
        display: none;
    }
    
    /* Show all gallery items on gallery page mobile view */
    .full-gallery .mobile-gallery-item {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    /* Always show all gallery items on desktop */
    .mobile-gallery-item {
        display: block;
    }
}

/* @media (min-width: 1024px) {
.flex.flex-col a {

    font-size: 1rem !important;
}
} */
/* Add your custom styles below */ 