/* style.css */
:root {
    --color-bg-main: #F8F9FA;
    --color-bg-card: #FFFFFF;
    --color-primary: #0096C7;
    --color-primary-hover: #0077b6;
    --color-text-main: #2B3A42;
    --color-text-muted: #5C6E7A;
    --color-border: #E0E5E9;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

p {
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF; /* Keep white on the hero image */
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/tms_rentals_hero_marina.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 40, 60, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeUp 1s ease-out;
}

.badge {
    display: inline-block;
    background-color: rgba(0, 150, 199, 0.8);
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.25rem;
    color: #F8F9FA;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background-color: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 150, 199, 0.3);
}

.primary-btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 199, 0.4);
}

/* Features */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    position: relative;
    color: #e6f1ff;
}

.features h2 {
    color: #ccd6f6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 150, 199, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #48cae4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 150, 199, 0.12);
    border-color: rgba(0, 150, 199, 0.2);
}

.card:hover::before {
    transform: scaleX(1);
}

/* Dark Card Overrides for Features Section */
.dark-card {
    background-color: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.dark-card:hover {
    border-color: rgba(0, 150, 199, 0.4);
    box-shadow: 0 20px 40px -15px rgba(2, 12, 27, 0.9);
}

.dark-card h3 {
    color: #ccd6f6;
}

.dark-card p {
    color: #8892b0;
}

.icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.icon svg {
    width: 3rem;
    height: 3rem;
    color: #48cae4;
    stroke-width: 1.5;
}

/* Waitlist Section */
.waitlist-section {
    padding: 8rem 0;
    background: linear-gradient(0deg, #EAEFF2 0%, var(--color-bg-main) 100%);
}

.waitlist-container {
    max-width: 600px;
    text-align: center;
}

.waitlist-container p {
    margin-bottom: 3rem;
}

.interest-form {
    background: var(--color-bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: #f4f7fb;
    border: 2px solid #e2e8f0;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input::placeholder {
    color: #94a3b8;
}

input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #FFFFFF;
    box-shadow: 0 8px 20px rgba(0, 150, 199, 0.12);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: var(--color-primary-hover);
}

.hidden {
    display: none !important;
}

.success-message {
    background: var(--color-bg-card);
    padding: 4rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    animation: fadeUp 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Pricing Section Additions */
.pricing {
    padding: 6rem 0;
    background-color: var(--color-bg-main);
}

.pricing-card {
    text-align: center;
    position: relative;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin: 1.5rem 0;
}

.price span {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--color-text-main);
}

.pricing-features {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-muted);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.addon {
    border: 1px solid var(--color-border);
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F6FA 100%);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #EAEFF2;
    color: var(--color-text-muted);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}