/*
Theme Name: Yacht Rental Child
Theme URI: https://themerex.net/
Description: Child theme for Yacht Rental by ThemeREX
Author: ThemeREX
Author URI: https://themerex.net/
Template: yacht-rental
Version: 1.0
*/

/* Apni custom CSS yahan likho */

.boats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
	justify-content: flex-start;
}
.boat-image {
    width: 100%;
}
.boat-item {
    width: 100%; 
    background: #fff;
    padding: 0vw 0 0vw 0;
    border-radius: 1vw;
    box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
}
.boat-item-inner {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding: 1vw 1vw;
}

.boat-image img {
    width: 100%;
    border-radius: 0.35vw;
    object-fit: cover;
    height: 18vw;
}

.boat-title {
    font-size: 1.2vw;
    margin: 1vw 0 0.5vw;
}

.boat-price {
    font-size: 1vw;
    color: #e60000;
    margin: 0.5vw 0;
}

.boat-excerpt {
    font-size: 0.9vw;
    margin-bottom: 1vw;
}

.boat-button {
    display: inline-block;
    padding: 0.5vw 1.2vw;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5vw;
    font-size: 0.9vw;
}

.boat-button:hover {
    background: #005177;
}

/* Responsive */
@media screen and (max-width: 1024px) {
	
	.boats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
}
	
    .boat-item { width: 100%; }
}
@media screen and (max-width: 768px) {
	.boats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2vw;
}
    .boat-item { width: 100%; }
}