:root {
    --primary-black: #1a1a1a;
    --gold: #C5A572;
    --white: #FFFFFF;
    --glass-bg: rgba(37, 37, 37, 0.7);
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a 25%, transparent 25%),
                linear-gradient(-45deg, #1a1a1a 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #1a1a1a 75%),
                linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.logo-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.main-logo {
    width: 150px;
    height: auto;
    
}

.subtitle {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.subtitle:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.card-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    perspective: 1000px;
}

.card-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
}

.card:hover .card-wrapper {
    transform: rotateY(10deg) rotateX(5deg);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(197, 165, 114, 0.2), transparent);
    border-radius: 15px;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.description {
    flex: 1;
    min-width: 300px;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 1rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.diagonal-box {
    position: relative;
    padding: 3rem;
    background: linear-gradient(135deg, var(--glass-bg), rgba(197, 165, 114, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transform: skewY(-3deg);
}

.diagonal-box .content {
    transform: skewY(3deg);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1.5rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.social-links {
    text-align: center;
    margin-top: 3rem;
}

.social-icon, .map-link {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover, .map-link:hover {
    color: var(--gold);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .card-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .diagonal-box {
        transform: none;
        padding: 2rem;
    }
}

.footer {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
    position: relative;
}

.footer-content {
    text-align: center;
}

.powered-by {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.highlight-text {
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    margin: 0;
}

.copyright {
    margin-left: 10px;
    opacity: 0.7;
}

/* Hover efekti */
.powered-by:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Animasyon */
.footer {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .footer {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
} 