
/* Temel stiller */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marck+Script&display=swap');

html {
    font-family: "IBM Plex Serif", serif;
}

body {
    cursor: url('images/normal-cursor.cur'), auto;
}

a {
    text-decoration: none;
}

/* --------------------------------------------------------- */

/* WhatsApp butonu stilleri */

.whatsapp-button {
    position: fixed;
    z-index: 999;
    left: 0px;
    bottom: 20px;
    animation: vibrate 2s ease infinite;
    border-radius: 50%;
}

.whatsapp-button img {
    width: 90px;
    height: auto;
}

.whatsapp-button img:hover{
    transform: scale(1.1);
}

@keyframes vibrate {
    0%, 50% { transform: translate(0, 0); }
    55% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, -2px); }
    65% { transform: translate(-2px, -2px); }
    70% { transform: translate(2px, 2px); }
    75% { transform: translate(0, 0); }
    100% { transform: translate(0, 0); }
}

/* WhatsApp butonu mobil stilleri */

@media (max-width: 1080px) {
    .whatsapp-button {
        left: 0px;
        bottom: 10px;
    }
    
    .whatsapp-button img {
        width: 70px;
    }
    
    .whatsapp-button:active img {
        transform: scale(1.1);
    }
}

/* --------------------------------------------------------- */

/* En uste cik butonu stilleri */

#scroll-to-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #7D3F4C;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s, transform 0.4s, background-color 0.3s, box-shadow 0.3s;
    z-index: 999;
}

#scroll-to-top:hover {
    background-color: #9A5865;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

#scroll-to-top::before {
    content: '▲';
    font-size: 20px;
    font-weight: bold;
    color: white;
}

#scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

#scroll-to-top.hide {
    opacity: 0;
    transform: translateY(100px);
}

/* En uste cik butonu mobil stilleri */

@media (max-width: 1080px) {
    #scroll-to-top {
        bottom: 10px;
        right: 30px;
        width: 40px;
        height: 40px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }

    #scroll-to-top::before {
        font-size: 18px;
    }
}

/* --------------------------------------------------------- */

/* Sayfa loader stilleri */

.loader {
    position: fixed;
    z-index: 9999;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    background-color: #530C1A;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 20px rgba(83, 12, 26, 0.8);
    transition: opacity 0.5s ease-out;
}

.loader::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border: 4px solid transparent;
    border-top: 4px solid #530C1A;
    border-bottom: 4px solid #530C1A;
    animation: spin 1.5s linear infinite;
}

.loader-image {
    width: 50px;
    height: 50px;
    z-index: 10;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1080px) {
    .loader {
        width: 45px;
        height: 45px;
    }

    .loader::before {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }

    .loader-image {
        width: 40px;
        height: 40px;
    }
}

/* --------------------------------------------------------- */

/* Header stilleri */

header {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    width: 100%;
    background-color: white;
    border-top: solid 5px #530C1A;
}

/* Top bar stilleri */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #530C1A;
    padding: 5px 20px;
    font-family: 'IBM Plex Serif', serif;
    background-color: white;
}

.date-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-icon {
    width: 25px;
    height: auto;
    margin: 10px 0px 10px 20px;
}

#datetime {
    color:#530C1A;
    font-size: 14px;
    font-weight:700;
    margin: 0px;
}

.currency-container {
    display: flex;
    align-items: center;
    gap: 2px;
    color:#530C1A;
    margin-right: 30px;
    font-size: 14px;
    font-weight: 700;
}

.currency-container img {
    width: 40px;
    height: auto;
}

/* Top bar mobil stilleri */

@media (max-width: 1080px) {
    .top-bar {
        padding: 5px 15px;
    }

    .date-container {
        gap: 10px;
    }

    .date-icon {
        width: 18px;
        margin: 6px 0px 6px 10px;
    }

    #datetime {
        font-size: 12px;
    }

    .currency-container {
        gap: 5px;
        margin-right: 15px;
        font-size: 12px;
    }

    .currency-container img {
        width: 25px;
    }
}

/* Banner logo stilleri */

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0px 20px;
    background: white;
}

.banner-logo {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.banner-logo img {
    width: 250px;
    height: auto;
    display: block;
}

.banner-logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.1) 70%);
    transform: skewX(-25deg);
    animation: shine 6s infinite linear;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Bilimadamlari sozleri stilleri */

#quote-container {
    width: 50%;
    text-align: left;
}

#quote-text {
    font-size: 22px;
    font-family: "Marck Script", cursive;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.8px;
    color:black;
}

#quote-author {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 500;
    font-style: italic;
    color: black;
    font-family: "Marck Script", cursive;
}

/* Bilimadamlari sozleri mobil stilleri */

@media (max-width: 768px) {
    #quote-container {
        width: 80%;
        margin-bottom: 20px;
        
    }

    #quote-text {
        font-size: 20px;
    }

    #quote-author {
        font-size: 18px;
    }
}

/* Dil secimi stilleri */

.language-select {
    display: flex;
}

.language-select img {
    cursor: pointer;
    width: 40px;
    height: auto;
    margin-right: 5px;
    transition: transform 0.5s, opacity 0.5s;
}

.language-select img:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Dil secimi mobil stilleri */

@media (max-width: 1080px) {
    .language-select {
        margin-bottom: 20px;
    }
}

/* Header mobil stilleri */

@media (max-width: 1080px) {
    .banner {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .banner-logo {
        margin-bottom: 10px;
    }

    .language-select {
        justify-content: center;
        margin-top: 20px;
    }
}

/* --------------------------------------------------------- */

/* Anasayfa videolari stilleri */

#first-video{
    margin: 0px 0px 50px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin: 50px 0px;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.slide-h1 {
    font-size: 34px;
    margin-bottom: 20px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 2s ease-out;
}

.slide-p {
    font-size: 17px;
    line-height: normal;
    transform: translateY(50px);
    opacity: 0;
    transition: all 2s ease-out;
    width: 80%;
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
}

.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

@keyframes slideh1 {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slidep {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Anasayfa videolari mobil stilleri */

@media (max-width: 1080px) {
    .video-container {
        height: 400px;
        max-width: 100%;
    }

    video {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-overlay {
        padding: 0px;
    }

    .slide-h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .slide-p {
        font-size: 12px;
        width: 85%;
    }
}

/* --------------------------------------------------------- */

/* Vitrin bolumu stilleri */

#showcase-h1{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #7D3F4C;
    text-decoration: underline;
    margin-bottom: 25px;
}

.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.showcase-container {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 200%;
}

.showcase-group-1, .showcase-group-2 {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-model-item {
    width: 200px;
    margin: 10px 25px;
    cursor: pointer;
    text-align: center;
}

.showcase-model-item h4 {
    color: #7D3F4C;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.showcase-model-item img {
    width: 100%;
    height: auto;
}

.showcase-info {
    display: none;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    border: solid 3px #530C1A;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: left;
    z-index: 999;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.popup h4 {
    color: #7D3F4C;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.popup img {
    width: 100%;
    height: auto;
}

.popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.close-btn {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 25px;
    background: none;
    border: none;
}

.blurred {
    filter: blur(5px);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 998;
}

/* Vitrin bolumu mobil stilleri */

@media (max-width: 1080px) {
    #showcase-h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .showcase-container {
        width: 100%;
    }

    .showcase-group-1, .showcase-group-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
        justify-items: center;
    }

    .showcase-model-item {
        width: 170px;
        margin: 5px;
    }

    .showcase-model-item h4 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .popup {
        width: 250px;
        padding: 15px;
        font-size: 13px;
    }

    .popup h4 {
        font-size: 13px;
    }

    .close-btn {
        font-size: 20px;
    }
}

/* --------------------------------------------------------- */

/* Parallax scrolling bolumu stilleri */

.parallax {
    position: relative;
    height: 700px;
    background-image: url('images/repair.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 75px 0px;
    border-top: solid 5px #530C1A;
    border-bottom: solid 5px #530C1A;
}

.text-container {
    position: relative;
    color: white;
    text-align: center;
    max-width: 80%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.text-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-container.hidden {
    opacity: 0;
    transform: translateY(50px);
}

#parallax-h1 {
    font-size: 34px;
    margin-bottom: 20px;
}

#parallax-p {
    font-size: 17px;
    line-height: normal;
}

.parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* Parallax scrolling bolumu mobil stilleri */

@media (max-width: 1080px) {
    .parallax {
        height: 400px;
        background-attachment: scroll;
        margin: 50px 0px;
    }

    .text-container {
        max-width: 90%;
    }

    #parallax-h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    #parallax-p {
        font-size: 12px;
        line-height: 1.5;
    }

    .parallax::before {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* --------------------------------------------------------- */

/* Sirket bolumu stilleri */

#company-h1 {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #7D3F4C;
    text-decoration: underline; 
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1s ease-out forwards;
    margin-top: 50px;
}

.company-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    width: 100%;
    margin: 20px auto 10px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 1s ease-out forwards;
}

.company {
    width: 100%;
    height: 100px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out forwards;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.company img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.company:hover img {
    transform: scale(1.2);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.company:nth-child(1) { animation-delay: 0.2s; }
.company:nth-child(2) { animation-delay: 0.4s; }
.company:nth-child(3) { animation-delay: 0.6s; }
.company:nth-child(4) { animation-delay: 0.8s; }
.company:nth-child(5) { animation-delay: 1s; }
.company:nth-child(6) { animation-delay: 1.2s; }
.company:nth-child(7) { animation-delay: 1.4s; }
.company:nth-child(8) { animation-delay: 1.6s; }
.company:nth-child(9) { animation-delay: 1.8s; }
.company:nth-child(10) { animation-delay: 2s; }
.company:nth-child(11) { animation-delay: 2.2s; }
.company:nth-child(12) { animation-delay: 2.4s; }

/* Sirket bolumu mobil stilleri */

@media (max-width: 1080px) {
    #company-h1 {
        font-size: 20px;
        margin-top: 20px;
    }

    .company-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 95%;
        margin: 15px auto 10px;
    }

    .company {
        height: 80px;
    }

    .company img {
        width: 70%;
        height: 70%;
    }

    .company:hover img {
        transform: scale(1.1);
    }
}

/* --------------------------------------------------------- */

/* Hakkimizda bolumu stilleri */

.about-us-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 15px 50px;
}

.about-us-info {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92%;
    height: auto;
    border: 5px solid #cacaca;
    border-radius: 20px;
    background-color: #f4f4f4;
}

.about-us-content {
    text-align: left;
    width: 70%;
    height: auto;
    margin-right: 75px;
}

.about-us-content h2 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #7D3F4C;
    text-decoration: underline;
}

.about-us-content p {
    font-size: 16px;
    line-height: normal;
}

.about-us-content p a { 
    font-size: 18px;
    font-weight: bold;
    color: #7D3F4C;   
}

.about-us-image {
    transition: filter 0.4s ease-in-out;
    max-width: 30%;
    height: auto;
}

.about-us-image:hover {
    filter: brightness(1.5);
}

/* Hakkimizda bolumu mobil stilieri */

@media (max-width: 1080px) {
    .about-us-container {
        flex-direction: column;
        padding: 10px;
        margin: 30px;
    }

    .about-us-info {
        flex-direction: column;
        width: 100%;
        padding: 15px;
        margin-bottom: 50px;
    }

    .about-us-content {
        width: 100%;
        margin: 20px 0;
        text-align: center;
    }

    .about-us-content h2 {
        font-size: 20px;
        margin-left: 0;
        margin-bottom: 10px;
        margin-top: -60px;
    }

    .about-us-content p {
        font-size: 14px;
        margin-left: 0;
        line-height: 1.6;
    }

    .about-us-content p a {
        font-size: 16px;
    }

    .about-us-image {
        max-width: 90%;
        height: auto;
        margin: 0px;
        margin-top: -30px;
    }
}

/* --------------------------------------------------------- */

/* Footer ust bilgi stilleri */ 

footer {
    text-align: center;
    width: 100%;
    color: white;
    box-shadow: 0 -8px 16px rgba(0, 0, 0, 0.1);
    background-image: url('images/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(83, 12, 26, 0.8);
    z-index: 0;
}

footer * {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.footer-info {
    text-align: left;
    flex: 1;
    margin: 35px 0px 0px 50px;
}

#footer-owner {
    font-size: 20px;
    color: white;
    margin: 10px 0px;
}

.footer-logo {
    width: 225px;
    height: auto;
    margin-left: -20px;
}

.footer-icon {
    width: 20px;
    height: auto;
    margin-right: 10px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.6;
}

/* Nav bolumu stilleri */

.footer-container {
    display: flex;
    gap: 20px;
    margin: 0px -15px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    padding: 8px 12px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.footer-nav img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-nav:hover {
    transform: scale(1.1);
}

.footer-nav:hover img {
    transform: scale(1.2);
}

/* Vision bolumu stilleri */

.vision-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.vision-gif {
    width: 250px;
    height: auto;
    margin-left: -75px;
}

.vision-info {
    max-width: 350px;
    text-align: left;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
    max-height: 200px;
    display: flex;
    flex: 1;
    justify-content: center;
}

.vision-info.expanded {
    max-height: 500px;
}

.vision-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    text-align: left;
    position: relative;
}

.more-text {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: block;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.more-text.visible {
    max-height: 300px;
    opacity: 1;
}

.read-more-link {
    color: #ffd700;
    font-weight: bold;
    text-decoration: none;
    margin-left: 5px;
    cursor: pointer;
    font-size: 14px;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Social media bolumu stilleri */

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 35px -50px 0px 0px;
    flex: 1;
}

.social-media h3 {
    font-size: 20px;
    color: white;
    text-decoration: underline;
}

.social-media .social-icons {
    display: flex;
    gap: 15px;
}

.social-media img {
    width: 35px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-media a:hover img {
    transform: scale(1.3);
}

/* Calisma saatleri bolumu stilleri */

.working-hours{
    width: 230px;
    height: auto;
}

.working-hours-h1 {
    text-align: left;
    margin: 10px 0px;
    font-size: 16px;
}

.working-hours ul {
    list-style-type: none;
    font-size: 14px;  
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0px;
    border-bottom: 2px solid white;
}

.current-status {
    display: flex;
    font-size: 14px;
    margin-top: 10px;
}

#status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: red;
    margin-right: 10px;
}

#current-status-text {
    margin: 0;
}

/* Footer ust bilgi mobil stilleri */

@media (max-width: 1080px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 15px;
        flex-direction: column;
    }

    .contact-container, .social-media {
        width: 100%;
        text-align: center;
    }
    
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin: 10px 10px;
    }
    
    #footer-owner {
        font-size: 19px;
    }

    .footer-logo {
        align-self: flex-start;
        width: 175px;
    }

    .footer-info p {
        text-align: left;
        font-size: 13px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        margin: 20px;
    }

    .footer-nav img {
        width: 35px;
        height: 35px;
    }

    .vision-container {
        flex-direction: row;
        text-align: left;
        margin: 20px 0px;
    }

    .vision-gif {
        width: 225px;
        margin-right: 0px;
        margin-left: -25px;
    }

    .vision-info {
        max-width: 90%;
        max-height: none;
        padding: 10px;
    }

    .vision-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .read-more-link {
        font-size: 13px;
        margin-top: 10px;
    }
    
    .social-media {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        margin-top: 15px;
    }
    
    .social-media h3 {
        text-align: left;
        width: 100%;
        margin-bottom: 10px;
        font-size: 19px;
    }
    
    .social-media .social-icons {
        display: flex;
        gap: 10px;
    }

    .working-hours-h1 {
        font-size: 15px;
    }
    
    .working-hours {
        text-align: left;
        width: 100%;
        margin-top: 15px;
    }

    .working-hours ul {
        font-size: 13px;  
    }

    .current-status {
        font-size: 13px;
    }
}

/* --------------------------------------------------------- */

/* Footer alt bilgi stilleri */

/* Abone ol bolumu stilleri */

.newsletter {
    margin-bottom: 20px;
}

.newsletter h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-decoration: underline;
}

.newsletter form {
    justify-content: center;
    gap: 5px;
}

.newsletter input[type="email"] {
    border: none;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;   
}

.newsletter button {
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    padding: 8px 16px;
    background-color: #555;
    color: white;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #9b1212;
}

/* Legal bolumu stilleri */

.legal-info {
    font-size: 14px;
}

.legal-info a {
    color: white;
    text-decoration: none;
}

.legal-info a:hover {
    text-decoration: underline;
}

/* Powered bolumu stilleri */

#powered {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; 
    padding-bottom: 10px;
    color: white;   
}

#powered:hover {
    text-decoration: underline;
}

#powered-sign {
    width: 35px;
    height: auto;
    margin: 5px 0px 0px 10px;
}

/* Footer alt bilgi mobil stili */

@media (max-width: 1080px) {
    .newsletter {
        margin-bottom: 10px;
    }

    .newsletter h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .newsletter form {
        flex-direction: column;
        align-items: center; 
        gap: 5px;
    }

    .newsletter input[type="email"] {
        font-size: 13px;
        padding: 8px;
    }

    .newsletter button {
        max-width: 120px;
        font-size: 13px;
        padding: 6px 12px; 
    }

    .legal-info {
        text-align: center;
        font-size: 13px;
        margin: 5px 0px;
    }

    #powered {
        flex-direction: row;
        text-align: center;
        font-size: 13px;
    }

    #powered-sign {
        width: 35px;
        height: auto;
    }
}

/* --------------------------------------------------------- */