/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e1919;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(28, 25, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f59e0b;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: #fef3c7;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #f59e0b;
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #1e3a2e 100%);
    position: relative;
    text-align: center;
    padding: 100px 20px 50px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506778020041-0ea35027d019?w=1920') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-logo {
    width: 160px;
    height: 160px;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(245, 158, 11, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 3.5rem;
    color: #fef3c7;
    margin-bottom: 15px;
    animation: slideUp 1s ease;
}

.hero-subtitle {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 20px;
    animation: slideUp 1s ease 0.2s backwards;
}

.hero-text {
    font-size: 1.25rem;
    color: #fef3c7;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideUp 1s ease 0.4s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    animation: slideUp 1s ease 0.6s backwards;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

/* About */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fef3c7 0%, #fef3c7 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-img-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-img-col:nth-child(2) {
    margin-top: 30px;
}

.about-images img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-images img:hover {
    transform: scale(1.05);
}

.section-title {
    font-size: 2.5rem;
    color: #78350f;
    margin-bottom: 20px;
}

.section-title span {
    color: #d97706;
}

.about-desc {
    font-size: 1.1rem;
    color: #78350f;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #f59e0b;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-card h3 {
    color: #78350f;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #92400e;
    line-height: 1.7;
}

/* Products */
.products {
    padding: 100px 0;
    background: linear-gradient(to bottom, #1c1917, #1e3a2e);
}

.section-title-center {
    text-align: center;
    font-size: 3rem;
    color: #fef3c7;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #fde68a;
    margin-bottom: 50px;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 35px;
    background: #292524;
    color: #fef3c7;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}

.tab-btn.active {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white;
    border-color: #f59e0b;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(41, 37, 36, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
    border-color: #f59e0b;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-badge {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-name {
    color: #fef3c7;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fef3c7, #fef3c7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #78350f;
    margin-bottom: 30px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-card h4 {
    color: #92400e;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-card p {
    color: #78350f;
    font-weight: 500;
    font-size: 1.05rem;
}

.contact-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: #78350f;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #78350f;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #fde68a;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Footer */
.footer {
    background: #1c1917;
    color: #fef3c7;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: 50px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f59e0b;
}

.footer-col p {
    color: #fde68a;
    line-height: 1.8;
}

.footer-col h4 {
    color: #f59e0b;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fde68a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f59e0b;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: #fde68a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #fde68a;
    margin-bottom: 10px;
}

.company-name {
    font-size: 0.85rem;
    color: #92400e;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-col:nth-child(2) {
        margin-top: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title-center {
        font-size: 2rem;
    }
    
    .product-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
}
