/* 
  Main Stylesheet for Amuse Website - Black & White Theme
  Version: 1.0
*/

/* ---------- Reset & Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Main Colors - Changed to Black & White */
    --primary-color: #ffffff; /* White (previously Yellow) */
    --secondary-color: #000000; /* Black */
    --text-color: #ffffff; /* White */
    --text-dark: #000000; /* Black text */
    --bg-color: #000000; /* Black background */
    --card-bg: #121212; /* Dark card background */
    --white-hover: #e6e6e6; /* Light gray hover (previously yellow-hover) */
    
    /* Font Sizes */
    --fs-xsmall: 0.75rem;    /* 12px */
    --fs-small: 0.875rem;    /* 14px */
    --fs-normal: 1rem;       /* 16px */
    --fs-medium: 1.125rem;   /* 18px */
    --fs-large: 1.25rem;     /* 20px */
    --fs-xlarge: 1.5rem;     /* 24px */
    --fs-xxlarge: 2rem;      /* 32px */
    --fs-xxxlarge: 2.5rem;   /* 40px */
    --fs-jumbo: 3.5rem;      /* 56px */
    
    /* Spacing */
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;    /* 8px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-xxl: 3rem;     /* 48px */
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-normal);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-jumbo);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Buttons - Changed to White */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 12px 24px;
}

.btn-primary:hover {
    background-color: var(--white-hover);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border: none;
}

.btn-secondary:hover {
    background-color: var(--white-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-login {
    background-color: transparent;
    color: var(--text-color);
}

.btn-login:hover {
    color: var(--primary-color);
}

.btn-dark {
    background-color: #000;
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

.btn-dark:hover {
    background-color: #222;
}

/* ---------- Header & Navigation ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: var(--transition-normal);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 18px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.main-nav ul li {
    margin-left: var(--spacing-xl);
}

.main-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--fs-small);
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

/* ---------- Hero Section ---------- */
.hero {
    padding-top: 120px;
    padding-bottom: var(--spacing-xxl);
    background-color: #000;
    position: relative;
    text-align: center;
    overflow: hidden;
    height: 85vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: var(--fs-jumbo);
    font-weight: 800;
    color: var(--primary-color); /* Now white */
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.hero-subtitle {
    font-size: var(--fs-xxlarge);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    color: #fff;
}

.hero-description {
    font-size: var(--fs-medium);
    margin-bottom: var(--spacing-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #fff;
}

/* Alert Banner - Changed to White Border */
.alert-banner {
    background-color: transparent;
    padding: var(--spacing-md) 0;
    border: 1px solid #ffffff; /* Changed from yellow to white */
    margin: 0 auto;
    max-width: 1180px;
    margin-top: -25px;
    position: relative;
    z-index: 2;
}

.alert-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
}

.alert-banner p {
    color: #fff;
    font-size: var(--fs-small);
    font-weight: 400;
}

.alert-link {
    color: var(--primary-color); /* Now white */
    text-decoration: none;
    font-size: var(--fs-small);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.alert-link i {
    margin-left: 8px;
}

/* ---------- From Device Section ---------- */
.from-device {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-color);
    position: relative;
    z-index: 1;
}

.from-device .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.left-aligned {
    text-align: left;
    max-width: 600px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    color: var(--primary-color); /* Now white */
    line-height: 1.2;
}

.section-subtitle {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    color: #fff;
}

.section-description {
    font-size: var(--fs-medium);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    color: #fff;
}

.streaming-logos {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: var(--spacing-xl);
    width: 100%;
}

.streaming-logos img {
    height: 30px;
    filter: brightness(0.8);
    transition: var(--transition-fast);
}

.streaming-logos img:hover {
    filter: brightness(1);
}

/* ---------- Distribution Features Section - Changed Yellow to White ---------- */
.distribution-features {
    padding: 0;
    color: var(--text-dark);
}

.yellow-background {
    background-color: #ffffff; /* Changed from yellow to white */
    padding: 60px 0;
    width: 100%;
}

.distribution-features .section-title {
    text-align: left;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    gap: 25px;
}

.features-column {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 25px;
}

.yellow-feature {
    background-color: #ffffff; /* Changed from yellow to white */
    padding: var(--spacing-xl);
    border-radius: 0;
    position: relative;
}

.dark-feature {
    background-color: #000;
    padding: var(--spacing-xl);
    border-radius: 0;
    position: relative;
}

.feature-title {
    font-size: var(--fs-xlarge);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    color: #000;
}

.dark-feature .feature-title {
    color: var(--primary-color); /* Now white */
}

.feature-description {
    margin-bottom: var(--spacing-xl);
    font-size: var(--fs-normal);
    line-height: 1.5;
    color: #000;
}

.dark-feature .feature-description {
    color: #ddd;
}

/* ---------- Plans Section ---------- */
.plans {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-color);
}

.plans .section-title {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    font-weight: 800;
    color: var(--primary-color); /* Now white */
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: var(--spacing-xl);
    text-align: center;
    max-width: 290px;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card.featured {
    background-color: #eeeeee; /* Changed from yellow to light gray */
}

.plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-xxlarge);
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    text-transform: uppercase;
}

.plan-price {
    margin-bottom: var(--spacing-lg);
}

.price {
    font-size: var(--fs-xxxlarge);
    font-weight: 700;
}

.billing {
    display: block;
    font-size: var(--fs-small);
    color: #777;
}

.plan-description {
    margin-bottom: var(--spacing-xl);
    font-size: var(--fs-normal);
}

.plan-help {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.plan-help p {
    margin-bottom: var(--spacing-md);
    color: #ccc;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    color: #000;
    font-size: 3rem;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    display: flex;
    max-width: 520px;
    align-items: flex-start;
}

.testimonial-photo {
    margin-right: 20px;
    flex-shrink: 0;
}

.testimonial-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

.author-name {
    display: block;
    font-size: 14px;
    color: #666;
}

/* ---------- Do More Section ---------- */
.do-more {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-color);
}

.do-more .section-title {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    font-weight: 800;
    color: var(--primary-color); /* Now white */
}

.do-more .features-grid {
    display: flex;
    gap: 25px;
}

.do-more .feature-card {
    background-color: transparent;
    border: 1px solid var(--primary-color); /* Now white border */
    padding: var(--spacing-xl);
    flex: 1;
}

.do-more .feature-title {
    font-weight: 800;
    color: var(--primary-color); /* Now white */
    margin-bottom: var(--spacing-lg);
}

.do-more .feature-description {
    color: #ddd;
    font-size: var(--fs-normal);
    line-height: 1.5;
}

/* ---------- Footer ---------- */
.footer {
    background-color: #000;
    padding: 60px 0 20px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo-section img {
    height: 24px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 15px;
}
p
.newsletter-form {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid #333;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

.btn-subscribe {
    background-color: var(--primary-color); /* Now white */
    color: #000;
    border: none;
    padding: 10px 15px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
}

.social-links {
    list-style: none;
    padding: 0;
}

.social-links li {
    margin-bottom: 12px;
}

.social-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.social-links a i {
    width: 20px;
    margin-right: 8px;
}

.social-links a:hover {
    color: var(--primary-color); /* Now white */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-color); /* Now white */
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
}

/* Responsive styles for footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Hakkımızda sayfası için ek stiller */

/* Ekip Bölümü */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.team-card {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: var(--fs-large);
    font-weight: 700;
    margin-bottom: 5px;
}

.member-title {
    font-size: var(--fs-small);
    color: #777;
    margin-bottom: 15px;
}

.member-bio {
    font-size: var(--fs-small);
    line-height: 1.5;
}

/* İletişim Bölümü */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
}

.contact-info {
    color: #000;
}

.contact-info h3 {
    font-size: var(--fs-large);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: var(--fs-normal);
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 20px;
    margin-right: 10px;
    color: #000;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-small);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 10px;
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}



/* Mobile and Responsive Styles */

/* Base responsive adjustments */
html {
    font-size: 16px;
}

/* Header & Navigation - Mobile */
@media (max-width: 768px) {
    .header .container {
        padding: 0 var(--spacing-md);
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav ul li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 10px 20px;
        font-size: 18px;
    }
    
    /* Hamburger menu animation when active */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Section - Responsive */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Alert Banner - Responsive */
@media (max-width: 768px) {
    .alert-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .alert-link {
        justify-content: center;
    }
}

/* From Device Section - Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .streaming-logos {
        justify-content: center;
        gap: 30px;
    }
    
    .streaming-logos img {
        height: 25px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .streaming-logos {
        gap: 20px;
    }
    
    .streaming-logos img {
        height: 20px;
    }
}

/* Distribution Features - Responsive */
@media (max-width: 992px) {
    .features-grid {
        flex-direction: column;
    }
    
    .features-column {
        width: 100%;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .yellow-background {
        padding: 40px 0;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-description {
        font-size: 0.875rem;
    }
}

/* Plans Section - Responsive */
@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
}

/* Testimonials Section - Responsive */
@media (max-width: 992px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .testimonial {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-photo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .testimonial-content p {
        font-size: 0.875rem;
    }
}

/* Do More Section - Responsive */
@media (max-width: 992px) {
    .do-more .features-grid {
        flex-direction: column;
        gap: 20px;
    }
}

/* Contact Form - Responsive (About page) */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 992px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .yellow-feature, .dark-feature {
        padding: var(--spacing-lg);
    }
}

/* Mobile Adjustments for buttons and general spacing */
@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .yellow-feature, .dark-feature {
        padding: var(--spacing-lg);
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

.plans-images {
    display: flex;
    justify-content: center;
    gap: 40px; /* İki resim arasındaki boşluk */
    margin-top: 50px;
}

.plans-images img {
    width: 300px; /* Resim genişliği */
    height: auto;
    border-radius: 10px; /* Hafif köşe yuvarlama */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plans-images img:hover {
    transform: scale(1.05); /* Hover efekt */
}

@media (max-width: 768px) {
    .plans-images {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Mobilde biraz daha az boşluk */
    }

    .plans-images img {
        width: 80%; /* Mobilde genişliği azalt */
        max-width: 300px; /* Taşmayı önle */
    }
}