/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}

body {
    background: url('images/background-pattern.jpg') no-repeat center 5% fixed;
    background-size: cover;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

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

/* Header Styles */
header {
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-login-btn {
    margin-right: 20px;
    font-size: 10pt;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 400px;
    padding-right: 30px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0px;
    color: #000;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.1;
    font-weight: 100;
}

.btn {
    display: inline-block;
    background-color: #000;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #333;
}

.btn-inverted {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.btn-inverted:hover {
    background-color: #f0f0f0;
    color: black;
}

.hero-image {
    flex: 1;
    min-width: 560px;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    width: 650px;
    max-height: 80vh;
    object-fit: contain;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-intro {
    text-align: left;
    margin: 0 0 40px;
}

.features-intro h2 {
    font-size: 2.7rem;
    line-height: 1.3;
    font-weight: 100;
    letter-spacing: -1px;
    color: #000;
}

.features-intro p {
    font-size: 1.2rem;
    color: #000;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 120px;
    width: 80%;
}

.feature-card {
    flex: 1 1 40%;
    min-width: 250px;
    max-width: 400px;
    padding: 15px 0 25px;
    border-top: 1px solid #000;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 100;
    color: #000;
}

.feature-card p {
    color: #000;
    font-size: 1rem;
    line-height: 1.5;
}

/* Use Cases Section */
.use-cases {
    padding: 60px 0 0 0;
    background-color: rgba(0, 0, 0, 1);
    color: white;
    position: relative;
}

.use-cases::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background-pattern.jpg') no-repeat center -20% fixed;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
}

.use-cases h2 {
    font-size: 2rem;
    text-align: left;
    font-weight: 100;
    border-top: 1px solid #fff;
    max-width: 25%;
}

.use-case-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.use-case-card {
    flex: 1 1 30%;
    min-width: 250px;
    min-height: 400px;
    text-align: center;
    padding: 30px;
    background-color: #000;
    transition: background-color 0.3s;
    cursor: pointer;
}

.use-case-card:hover {
    background-color: #333;
}

.use-case-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 100;
    text-align: center;
}

.use-case-card .btn {
    margin-top: 15px;
}

/* Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 5px;
    position: relative;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-submit {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.form-submit:hover {
    background-color: #333;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 5px 0 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 20%;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #000;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #666;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #000;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .hero-image img {
        width: 600px;
    }
}

@media (max-width: 1200px) {
    .hero-text {
        min-width: 300px;
    }
    
    .hero-image {
        min-width: 650px;
    }
    
    .hero-image img {
        width: 650px;
    }
}

@media (max-width: 992px) {
    .hero-image {
        min-width: 400px;
    }
    
    .hero-image img {
        width: 500px;
    }
    
    .use-case-grid {
        justify-content: center;
        gap: 20px;
    }
    
    .use-case-card {
        flex: 0 1 45%;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        height: auto;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        width: 100%;
        min-width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .hero-text {
        margin-bottom: 30px;
    }
    
    .hero-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 500px;
    }
    
    .feature-card, .use-case-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
    
    .features-intro, .use-cases h2 {
        text-align: center;
    }
    
    .use-case-card {
        flex: 0 1 100%;
        max-width: 400px;
    }
    
    .use-cases h2 {
        max-width: 50%;
    }
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Adjust font weights */
h1, h2, h3, h4 {
    font-weight: 300;
}

.hero-text h1 {
    font-weight: 300;
}

.btn {
    font-weight: 600;
}

.feature-card h3 {
    font-weight: 100;
}

.use-case-card h3 {
    font-weight: 100;
}

.footer-column h4 {
    font-weight: 600;
}