* { margin: 0; padding: 0; box-sizing: border-box; } /* Delete browser spaces */

/* Header & Nav Start*/
.main-header { display: flex; align-items: center; background-color: #ebcc80; justify-content: center; min-height: 150px;}
.logo-area {display: flex; justify-content: center;align-items: center;}
.logo-area img { display:block; height: 30%; width:30%; }
.main-nav { background: #441809; position: sticky;}
.main-nav ul { display: flex; justify-content: center; list-style: none; gap: 1%;}
.main-nav a { color: white; text-decoration: none; font-weight: bold; transition: 0.3s;}
.main-nav a:hover { color: gold; }

/* Header & Nav End*/

/* Mouse Sparkle Start */
.sparkle {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: #d4a017; /* Sanizade Altın Sarısı */
    border-radius: 50%;
    pointer-events: none; /* Mouse tıklamalarını engellememesi için kritik */
    z-index: 9999;
    /* Parlama efekti */
    box-shadow: 0 0 10px #d4a017, 0 0 20px #ffffff;
    animation: fadeOut 0.8s linear forwards;
}

@keyframes fadeOut {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
}
/* Mouse Sparkle End */

/* Main Content Start*/
.page-wrapper { display: flex; justify-content: space-between; align-items: stretch; width: 100%; margin: 2rem 0; gap: 2%;}
aside { background: #f9f9f9; border: 1px dashed #ddd; display: flex; align-items: center; justify-content: center; flex: 0 0 15%; min-height: 400px; }
.main-content {display: flex; flex: 1; padding: 0 1%; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center;}
.ad-box { writing-mode: vertical-rl; color: #aaa; text-transform: uppercase; letter-spacing: 2px; }

.hero-section {
    text-align: center;
    padding: 2rem;
}

.hero-section h2 {
font-size: 2rem; 
font-weight: 800; 
color: #441809;
margin-bottom: 2.5rem; 
border-bottom: 2px solid #d4a017; 
display: inline-block;
padding-bottom: 10px;
}

.storage-item h3 {
font-size: 1.4rem;
font-weight: 700;
color: #d4a017; 
margin-top: 1.5rem; 
margin-bottom: 0.5rem;
}

.storage-item {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.storage-item h3 {
    color: #441809;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.storage-item p {
font-size: 1.1rem; 
line-height: 1.8; 
font-weight: 500;
color: #333;
max-width: 900px;
margin: 0 auto;
}

.warning-text { display: inline-block; background-color: #fff9e6; border-left: 5px solid #d4a017; color: #441809; padding: 15px 25px; margin: 20px 0; font-size: 0.95rem; font-weight: 600; border-radius: 4px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);text-align: center;animation: pulse 2s infinite;}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}

/* Hakkımızda Sayfası Genel Stil */
.about-section {
    padding: 50px 0;
    text-align: center;
    background-color: #fffaf0; /* Hafif krem rengi arka plan */
}

.about-text {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #4b3621; /* Koyu kahve tonu */
    font-size: 1.1rem;
}

.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(184,134,11,0.75), rgba(0,0,0,0));
    margin: 15px 0 !important;
}

/* Videoların Yan Yana Dizilimi */
.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.video-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.video-item p {
    margin-top: 10px;
    font-weight: bold;
    color: #b8860b;
}

/* Sertifika Görselleri */
.achievements-section img {
    width: 180px;
    height: auto;
    margin: 15px;
    border: 1px solid #ddd;
    padding: 5px;
    transition: transform 0.3s;
}

.achievements-section img:hover {
    transform: translateY(-5px);
}

/* İletişim Sayfası Genel Ayarlar */
.contact-section { padding: 2rem; text-align: center; }
.main-title { font-size: 2.5rem; font-weight: 800; color: #441809; border-bottom: 2px solid #d4a017; display: inline-block; margin-bottom: 30px; padding-bottom: 10px; }
.sub-title { font-size: 2rem; color: #441809; margin-bottom: 10px; }

/* Şube Kartları ve Harita */
.branch-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.branch-card { width: 45%; min-width: 320px; background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.map-container { border-radius: 8px; overflow: hidden; margin-bottom: 15px; border: 1px solid #ddd; }
.branch-card h4 { color: #d4a017; font-size: 1.3rem; margin-bottom: 5px; }

/* Form Tasarımı (Alt Alta Hizalama) */
.contact-form-area { max-width: 600px; margin: 0 auto; text-align: left; }
.form-desc { text-align: center; color: #666; margin-bottom: 25px; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-group label { font-weight: 700; color: #441809; margin-bottom: 8px; }
.form-group input, .form-group textarea { padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; }
.submit-btn { background: #441809; color: #ebcc80; padding: 15px; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; font-size: 1.1rem; transition: 0.3s; }
.submit-btn:hover { background: #d4a017; color: white; }

/* Sosyal Medya */
.social-icons-row { display: flex; justify-content: center; gap: 30px; margin-top: 20px; }
.social-icons-row img { width: 45px; height: 45px; transition: 0.3s; }
.social-icons-row img:hover { transform: translateY(-5px); }

.main-section-title {
    background-color: #441809;
    color: white;
    padding: 10px 20px;
    margin-top: 40px;
    border-radius: 5px;
    text-transform: uppercase;
}

.sub-category-title {
    border-bottom: 2px solid #441809;
    color: #441809;
    margin: 25px 0 15px 0;
    padding-bottom: 5px;
    font-weight: bold;
}

.custom-product-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.product-item {
    text-align: center;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
    transition: transform 0.2s ease;
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Duyarlılık */
@media (max-width: 992px) { .custom-product-container { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .custom-product-container { grid-template-columns: repeat(2, 1fr); } }

/* Main Content End*/

/* Footer Start */

.main-footer { background: #f8f9fa; border-top: 0.5% solid #ddd; width: 100%; }

.footer-container { margin: 0 auto; display: flex; flex-direction: row;  align-items: center; justify-content: center; gap: 0.5%; text-align: center; }

.footer-social {display: flex; gap: 25%; align-items: center;}

/* Footer End */
