/*
Theme Name: Rambungan Marine Theme
Theme URI: https://t.me/jagosoftware
Author: Jago Software
Author URI: https://t.me/jagosoftware
Description: Custom WordPress Theme with ACF Pro for Rambungan Marine
Version: 1.0.0
Text Domain: rambungan-marine
*/

/* Gallery Grid Styles */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.photo-item {
    text-align: center;
}
.photo-item img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.photo-item a:hover img {
    transform: scale(1.03);
}
.photo-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar and Mobile Fixes */
.sub, .subdown {
    width: 100% !important;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .menu-arrow-cell {
        display: none !important;
    }
    .ptitle {
        text-align: left;
        display: block;
        padding-bottom: 20px;
    }
}
