/* Light Theme for VALOCONNECT */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff6b00;
}

.logo span {
    color: #0077cc;
}

nav a {
    color: #333333;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #0077cc;
}

.mobile-menu-btn,
.close-menu {
    display: none;
    background: none;
    border: none;
    color: #333333;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    background: url('./images/pexels-hardial-singh-917941769-20524584.jpg') center/cover no-repeat;
    background-position: center 85%;
    background-size: 70%;
    height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #222222;
}

.tagline {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555555;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #0077cc 0%, #00bbee 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #005fa3;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #222222;
}

.features, .fleet, .contact {
    padding: 80px 0;
}

.features-grid,
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #0077cc;
}

.contact {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info p {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    color: #555;
}

.contact-info p i {
    margin-right: 10px;
    color: #0077cc;
}

.contact-form {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-control:focus {
    border-color: #0077cc;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #0077cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #005fa3;
}

footer {
    padding: 40px 0;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
}

.footer-links a:hover {
    color: #0077cc;
}

copyright {
    color: #999;
    font-size: 14px;
}


@media (max-width: 1200px) {
    .hero {
        background-size: 90%;
    }
}
  
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 80px 30px;
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }

    nav a {
        display: block;
        margin: 0 0 20px 0;
        font-size: 18px;
        width: 100%;
    }

    nav.active {
        right: 0;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #333;
        font-size: 24px;
        cursor: pointer;
        display: block;
    }

    .hero {
        background-size: 100%;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 99;
        display: none;
    }

    .overlay.active {
        display: block;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 70vh;
        background-size: 100%;
    }

    .vessel-card {
        height: 300px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    h1 {
        font-size: 32px;
    }

    .logo {
        font-size: 24px;
    }

    .feature-card, .contact-form {
        padding: 20px;
    }

    .cta-button, .submit-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}
