/**
 * Additional Styles for Luxury Daily Cruises Theme
 * Contains styles for modern yacht cards, contact section, and footer
 */

/* Modern Yacht Card Styles */
.yacht-card-modern {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yacht-card-inner {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yacht-card-modern:hover .yacht-card-inner {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Card Image */
.yacht-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.yacht-image-link {
    display: block;
    height: 100%;
}

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

.yacht-card-modern:hover .yacht-card-image img {
    transform: scale(1.05);
}

.yacht-placeholder-image {
    width: 100%;
    height: 100%;
    background: #f0f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8a8a;
    font-size: 0.9rem;
}

/* Badges */
.yacht-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 80%;
}

.yacht-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.yacht-type {
    background: rgba(44, 90, 160, 0.85);
}

.yacht-available {
    background: rgba(40, 167, 69, 0.85);
}

.yacht-sale {
    background: rgba(220, 53, 69, 0.85);
}

/* Card Content */
.yacht-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.yacht-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.yacht-card-title a {
    color: #1a2332;
    text-decoration: none;
    transition: color 0.2s ease;
}

.yacht-card-title a:hover {
    color: #2c5aa0;
}

/* Specs */
.yacht-card-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.yacht-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
}

.spec-icon {
    color: #2c5aa0;
    font-size: 1rem;
}

/* Price */
.yacht-card-price {
    margin: 15px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5aa0;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.yacht-card-price .price-period {
    font-size: 0.85rem;
    font-weight: 400;
    color: #8a8a8a;
}

/* Action Buttons */
.yacht-card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.yacht-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.yacht-btn-primary {
    background-color: #f0f3f5;
    color: #1a2332;
    border: none;
}

.yacht-btn-primary:hover {
    background-color: #e0e5ea;
    color: #2c5aa0;
}

.yacht-btn-book {
    background-color: #2c5aa0;
    color: white;
    border: none;
}

.yacht-btn-book:hover {
    background-color: #1e3f73;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Contact Section Styles */
.contact-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.contact-item i {
    color: #2c5aa0;
    font-size: 1.2rem;
    width: 20px;
    margin-top: 0.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2c5aa0;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-hours h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-hours p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Styles */
.site-footer {
    background: #1a2332;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #2c5aa0;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-about p {
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(44, 90, 160, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5aa0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.footer-hours h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-hours p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

.footer-legal ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.certification {
    background: rgba(44, 90, 160, 0.2);
    color: #2c5aa0;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map {
        min-height: 350px;
    }
    
    .yacht-card-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Button Styles */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}
