/* Machine Hero Section */
.machine-hero {
    background: linear-gradient(rgba(41, 48, 78, 0.9), rgba(41, 48, 78, 0.9)), url('../images/machine1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.machine-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.machine-hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Machine Details Section */
.machine-details {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.machine-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.machine-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.machine-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.machine-image:hover img {
    transform: scale(1.05);
}

.machine-info {
    padding: 20px;
}

.machine-info h2 {
    color: #29304e;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.machine-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    margin-bottom: 2rem;
}

.features h3,
.specifications h3,
.applications h3 {
    color: #29304e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #29304e;
}

.features ul,
.specifications ul,
.applications ul {
    list-style: none;
    padding: 0;
}

.features li,
.specifications li,
.applications li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #555;
}

.features li i,
.applications li i {
    color: #29304e;
    margin-right: 10px;
    font-size: 1.1rem;
}

.specifications li strong {
    color: #29304e;
    margin-right: 5px;
}

/* CTA Section */
.cta-section {
    background-color: #29304e;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #29304e;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .machine-content {
        grid-template-columns: 1fr;
    }

    .machine-hero h1 {
        font-size: 2.5rem;
    }

    .machine-hero .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .machine-hero {
        padding: 60px 0;
    }

    .machine-details {
        padding: 40px 0;
    }

    .machine-info h2 {
        font-size: 1.8rem;
    }

    .features h3,
    .specifications h3,
    .applications h3 {
        font-size: 1.3rem;
    }

    .menu-toggle {
        display: block;
    }
}

/* Eğer .dropdown-menu li a:hover varsa scale efektini kaldır */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 32px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
    z-index: 1100;
} 