/* 
* e-MusicBox - Main Stylesheet
* Colors based on logo: 
* - Primary Blue: #003366
* - Secondary Orange: #FFA500
*/

/* Global Styles */
:root {
    --primary-color: #003366;
    --secondary-color: #FFA500;
    --text-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    --dark-gray: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    margin: 0;
    padding: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: #e69500;
    color: var(--light-color);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: #002855;
    color: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
    position: relative;
    padding-top: 60px; /* Add space for the logo */
}
.logo-container {
    width: 11%;
    position: absolute;
    top: 0;
    left: 49%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
    text-align: center;
    z-index: 1000;
}

/* Mobile Logo Styles */
@media (max-width: 991px) {
    .logo-container {
        width: 30%;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 5px;
    }
    
    .logo {
        margin-bottom: -30px;
    }
    
    /* Adjust navbar spacing for mobile */
    .navbar {
        padding-top: 10px;
        padding-bottom: 50px;
    }
    
    /* Ensure navbar togglers are visible above the logo */
    .navbar-toggler {
        z-index: 1100;
        position: relative;
    }
}

.logo {
    width: 75%;
    height: auto;
    display: block;
    margin-top: 0;
    margin-bottom: -80px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 5px 10px;
    margin: 0 10px; /* Menü yazıları arasında 10px boşluk */
    font-size: 0.9rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

.btn-satin-al {
    background-color: var(--secondary-color);
    border-radius: 5px;
    color: var(--light-color) !important;
    padding: 8px 20px !important;
    margin-left: 10px;
}

.btn-satin-al:hover {
    background-color: #e69500;
    color: var(--light-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 165, 0, 0.2), transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 30px 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    margin: 0 10px 10px 0;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-outline-light {
    border: 2px solid var(--light-color);
    color: var(--light-color);
    background: transparent;
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

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

/* Features Section */
.features {
    padding: 100px 0 80px;
    background-color: var(--gray-color);
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.features-container {
    margin-top: 30px;
}

.feature-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card.highlight {
    border-top: 4px solid var(--secondary-color);
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(255, 165, 0, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 22px;
}

.feature-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0 80px;
    background-color: var(--light-color);
}

.testimonial-container {
    margin-top: 30px;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    border: none;
    background: linear-gradient(145deg, var(--primary-color), #004080);
    color: var(--light-color);
}

.testimonial-card.featured .testimonial-author h4,
.testimonial-card.featured .testimonial-rating i {
    color: var(--secondary-color);
}

.testimonial-card.featured .testimonial-author p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-info p {
    color: var(--dark-gray);
    font-size: 14px;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, var(--primary-color), #002244);
    color: var(--light-color);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png');
    opacity: 0.05;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.cta-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.cta-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

.cta-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    text-align: center;
}

.cta-price {
    margin-bottom: 20px;
}

.cta-price .currency {
    font-size: 24px;
    vertical-align: top;
    position: relative;
    top: 8px;
}

.cta-price .amount {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.cta-price .period {
    font-size: 16px;
    color: var(--dark-gray);
}

.cta-price-features {
    margin-bottom: 25px;
    text-align: center;
}

.cta-price-features p {
    margin-bottom: 10px;
    font-size: 16px;
}

.cta-note {
    font-size: 12px;
    color: var(--dark-gray);
    margin-top: 15px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--gray-color);
}

.newsletter h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

.newsletter-form {
    margin-top: 15px;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 5px 0 0 5px;
}

.newsletter-form .btn {
    border-radius: 0 5px 5px 0;
    height: 50px;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #002244, #004080);
    color: var(--light-color);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png');
    opacity: 0.05;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-about {
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--light-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0;
}

.footer-links-secondary {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-links-secondary a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links-secondary a:hover {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .cta-card {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-links-secondary {
        justify-content: center;
        margin-top: 15px;
    }
}

/* About Page */
.about-section {
    padding: 80px 0;
}

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

.about-image {
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* References Page */
.references {
    padding: 80px 0;
    background-color: var(--gray-color);
}

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

.reference-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reference-image {
    height: 200px;
    overflow: hidden;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-content {
    padding: 20px;
}

.reference-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

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

.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 20px;
    margin-right: 15px;
    color: var(--secondary-color);
}

/* Purchase Page */
.pricing-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    position: relative;
}

.featured-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-name {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.pricing-price span {
    font-size: 16px;
    color: var(--dark-gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.whatsapp-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #25D366; /* WhatsApp green color on hover */
}

footer h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-color);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Admin Panel */
.admin-login {
    max-width: 400px;
    margin: 100px auto;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admin-login h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}



.admin-logo {
    text-align: center;
    margin-bottom: 30px;
}

.admin-logo img {
    height: 40px;
}

.admin-menu {
    list-style: none;
    padding: 0;
}

.admin-menu li {
    margin-bottom: 10px;
}

.admin-menu a {
    color: var(--light-color);
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.admin-menu a:hover, .admin-menu a.active {
    background-color: var(--secondary-color);
}

.admin-content {
    padding: 20px;
}

.admin-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.admin-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .navbar-nav {
        margin-top: 15px;
    }
    
    .btn-satin-al {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card, .reference-card, .pricing-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}
