/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #b30000; /* Kırmızı ton */
}

.welcome-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover; /* Örnek görsel */
    position: relative;
    text-align: center;
}

.welcome-screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(179, 0, 0, 0.8); /* Kırmızı ton üzerine opak katman */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3rem;
    margin: 0;
}

h1 span {
    color: #ffcc00; /* Dcycle Agency adı için vurgu rengi */
}

p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.icons {
    margin-top: 1.5rem;
}

.icons i {
    font-size: 2rem;
    margin: 0 0.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.icons i:hover {
    transform: scale(1.3);
    color: #ffcc00;
}
