/* 
   Bon Ward Luxury Yacht Care - Design System 
   Theme: Superyacht / Monaco / Premium
*/

:root {
    --primary-color: #0c1b33; /* Deep Navy Blue */
    --secondary-color: #c5a059; /* Gold / Sand */
    --secondary-dark: #a08040;
    --text-color: #333333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-off-white: #f9f9f9;
    --bg-dark: #0a1525;
    
    --font-heading: 'Playfair Display', serif; /* Or remain Sans for modern look, but Playfair adds luxury */
    --font-body: 'Montserrat', sans-serif;
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --container-width: 1200px;
    --border-radius: 4px; /* Sharp or slightly rounded for professional look */
    --box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading); /* Or Montserrat with different weight if preferred */
    font-weight: 600; /* reduced from 700 for more elegance */
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 2px; /* Slight radius */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(12, 27, 51, 0.95); /* Navy with opacity */
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: padding 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--secondary-color);
}

.btn-primary-small {
    padding: 10px 20px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color) !important;
}

.btn-primary-small:hover {
    background: var(--secondary-color);
    color: #fff !important;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 0; /* Full screen */
}

.hero-background-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(12, 27, 51, 0.8) 0%, rgba(12, 27, 51, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-text h1 {
    color: #fff;
    font-size: 3.5rem; /* Large impact */
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-bullets {
    margin-bottom: 2.5rem;
}

.hero-bullets li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.hero-bullets i {
    color: var(--secondary-color);
    margin-right: 12px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

/* Owner's Challenge Section */
.challenge-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-off-white);
}

.challenge-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.challenge-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.challenge-text p {
    margin-bottom: 1rem;
    color: #555;
}

.challenge-visual {
    position: relative;
}

.challenge-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.caption {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #fff;
    padding: 15px 30px;
    box-shadow: var(--box-shadow);
    color: var(--primary-color);
    font-style: italic;
    border-left: 4px solid var(--secondary-color);
}

/* Solution Section */
.solution-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: var(--spacing-lg);
}

.solution-card {
    padding: 40px 30px;
    background: #fff;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
}

.solution-card:hover {
    box-shadow: var(--box-shadow);
    border-color: transparent;
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--font-body); /* Stronger sans */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.cta-center {
    text-align: center;
}

/* Services Section */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-dark);
    color: #fff;
}

.services-section h2 {
    color: #fff;
    text-align: center;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    background: rgba(255,255,255,0.05); /* Glass effect subtle */
    padding: 30px;
    border-left: 3px solid var(--secondary-color);
    transition: background 0.3s;
}

.service-item:hover {
    background: rgba(255,255,255,0.1);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.service-info p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Why Bon Ward */
.why-us-section {
    padding: var(--spacing-xl) 0;
    background: #fdfdfd; 
}

.why-us-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    padding: 60px;
    box-shadow: var(--box-shadow);
    border-top: 5px solid var(--primary-color);
}

.why-us-content h2 {
    text-align: center;
    margin-bottom: 40px;
}

.why-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.why-list i {
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

/* Who It's For */
.who-section {
    padding: var(--spacing-xl) 0;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.who-item {
    text-align: center;
}

.who-item i {
    font-size: 3rem;
    color: var(--primary-color); /* Navy icons */
    margin-bottom: 20px;
    opacity: 0.8;
}

.who-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Lead Capture / Contact */
.contact-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(12,27,51,0.9), rgba(12,27,51,0.9)), url('assets/hero_yacht_mallorca.webp'); /* Reuse hero as BG but dark */
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: var(--border-radius);
    color: var(--text-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.contact-form-wrapper h2 {
    text-align: center;
    margin-bottom: 10px;
}

.trust-note {
    text-align: center;
    margin-bottom: 30px;
    color: #777;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 60px 0 20px;
    border-top: 5px solid var(--secondary-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 5px;
}

.footer-brand p {
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}
.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-contact i {
    width: 20px;
    color: var(--secondary-color);
}

.footer-legal {
    text-align: right;
}

.footer-legal a {
    display: block;
    margin-bottom: 5px;
    color: #888;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #fff;
}

.seo-text {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #444;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .challenge-container {
        grid-template-columns: 1fr;
    }
    
    .solution-grid, .who-grid {
        grid-template-columns: 1fr; 
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .cta-group {
        flex-direction: column;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        text-align: center;
    }
}
