/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Hero */
.hero {
    background: url('https://i.imgur.com/qzJbm11.jpeg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 12px;
}

.hero h1 {
    font-size: 3rem;
    color: #FFD700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin: 1rem 0;
    font-weight: 300;
}

/* Hero Buttons */
.contact-buttons {
    margin-top: 1.5rem;
}

.contact-buttons a {
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    margin: 0 10px;
    transition: 0.3s ease;
    display: inline-block;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.contact-buttons a:hover {
    opacity: 0.8;
}

.contact-buttons i {
    margin-right: 8px;
}

/* About Section */
.about {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    background: #111;
    align-items: center;
}

.about-text, .about-img {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.about-text ul li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
}

.about-text ul li i {
    margin-right: 10px;
    color: #FFD700;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
}

/* Comfort Section */
.comfort {
    background: url('https://i.imgur.com/C9rG7kJ.jpeg') no-repeat center center/cover;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comfort-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.comfort h2 {
    font-size: 2.5rem;
    color: #FFD700;
}

.comfort p {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 3rem 1.5rem;
    text-align: center;
    background: #111;
}

.contact h2 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.contact-buttons a {
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem 1rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.call-btn {
    background: #007bff;
    color: #fff;
}

.insta-btn {
    background: #C13584;
    color: #fff;
}

.contact-buttons a:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    padding: 1rem;
    text-align: center;
    background: #111;
    color: #aaa;
    position: relative;
    font-size: 1rem;
}

.footer-socials {
    margin-top: 0.5rem;
}

.footer-socials a {
    color: #aaa;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .about {
        flex-direction: column;
    }

    .comfort {
        height: 250px;
    }
}
