/* 7 Aqua Surf - Coastal Vacation Home Theme */

:root {
    --ocean-blue: #0077BE;
    --sand-beige: #F5E6D3;
    --wave-turquoise: #40E0D0;
    --sunset-coral: #FF6B6B;
    --deep-ocean: #003D5B;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: white;
}

/* Override section template colors for coastal theme */
.iron-section {
    --primary-color: var(--ocean-blue);
    --accent-color: var(--wave-turquoise);
}

.iron-btn-primary {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--wave-turquoise) 100%) !important;
}

.section-subtitle {
    color: var(--ocean-blue) !important;
}

/* Hero section coastal styling */
.hero-section {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--wave-turquoise) 100%);
}

/* Add wave effect to sections */
.iron-section.light {
    background: linear-gradient(to bottom, white 0%, var(--sand-beige) 100%);
}

/* Hide scroll arrow */
.scroll-indicator,
.scroll-arrow {
    display: none !important;
}

/* Fix map section - center align */
.location-map .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-map .map-wrapper {
    display: block !important;
    max-width: 100%;
}

.location-map .map-container {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

/* Fix contact form alignment */
.contact-form .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form .form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.contact-form .contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .contact-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-map .map-container {
        height: 400px;
    }
}
