/* Landing Page Styles for Seaworthy Holdings LLC */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Root Variables */
:root {
    --primary-blue: #4D869C;
    --light-blue: #7AB2B2;
    --lightest-blue: #CDE8E5;
    --off-white: #EEF7FF;
    --white: #ffffff;
    --dark-text: #2c3e50;
    --light-text: #6c757d;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.property-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--light-text);
    line-height: 1.7;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue) !important;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/static/image/Home-Image-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        height: 60vh;
        min-height: 400px;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

/* Property Showcase */
.property-showcase {
    padding: 5rem 0;
    background-color: var(--off-white);
}

.property-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.short-term-bg {
    background-image: url('/static/image/Home-Image-5.jpg');
}

.long-term-bg {
    background-image: url('/static/image/Home-Image-6.jpg');
}

.property-content {
    padding: 2rem;
}

.property-description {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 134, 156, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 134, 156, 0.3);
}

/* Footer */
.footer-section {
    background-color: var(--lightest-blue);
    padding: 3rem 0 0 0;
    color: var(--dark-text);
}

.footer-logo {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    margin-left: 1rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .property-showcase {
        padding: 3rem 0;
    }

    .property-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Animation utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animation-delay-1 {
    animation-delay: 0.2s;
}

.animation-delay-2 {
    animation-delay: 0.4s;
}