/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #454444;
    /* background: linear-gradient(180deg, #2d0303, #3b0a0a, #000000); */
    /* background: #2d0303; */
    /* background: repeating-linear-gradient(
    90deg,
    rgba(45, 3, 3, 0.2),
    rgba(45, 3, 3, 0.2) 10px,
    rgba(74, 10, 10, 0.2) 10px, 
    rgba(74, 10, 10, 0.2) 20px
  ); */
  background: repeating-linear-gradient(
    90deg,
    #2d0303,
    #2d0303 10px,
    #3a0a0a 10px,  /* lighter shade of #2d0303 */
    #3a0a0a 20px
  );
    line-height: 1.6;
}


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

h1, h2, h3 {
    margin-top: 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 10px 5px;
}

.btn-primary {
    /* background-color: #4CAF50; */
    background: linear-gradient(
        135deg, #b07d10 0%, /* deeper gold */ 
        #d4af37 20%, /* rich gold */ 
        #ffd700 40%, /* bright gold */
        #fff054 60%, /* reflective highlight */
        #d4af37 80%, /* metallic gold */
        #a66e00 100%
    );
    color: rgb(0, 0, 0);
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3)
}

.btn-primary:hover {
    background-color: #3e8e41;
}

.btn-secondary {
    background-color: #2196F3;
    color: white;
}

.btn-secondary:hover {
    background-color: #0b7dda;
}

.btn-download {
    background: #2d0303;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.795);
}

.btn-download:hover {
    background-color: #e64a19;
}

/* Header */
.header {
    /* background-color: #4CAF50; */
    background:linear-gradient(135deg, #b07d10 0%,  #d4af37 20%,  #ffd700 40%,  #fff054 60%, #d4af37 80%, #a66e00 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 70px;
}

.nav a {
    margin-left: 20px;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 18%);
    color: #2d0303;
    font-weight: 500;
    text-decoration: none;
}

.nav a:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 120px 0 10px;
    /* background-color: #f9f9f9; */
    /* background: #2d0303; */
    /* background:  linear-gradient(180deg, #2d0303, #3b0a0a, #000000) */
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 60%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    /* color: #4CAF50; */
    background: linear-gradient(135deg, #b07d10 0%,  #d4af37 20%,  #ffd700 40%,  #fff054 60%,  #d4af37 80%,#a66e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #999797;
}

/* Features Section */
.features {
    padding: 0px 0 10px;
    /* background: #2d0303; */
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    /* color: #333; */
     background: linear-gradient(135deg, #b07d10 0%,  #d4af37 20%,  #ffd700 40%,  #fff054 60%,  #d4af37 80%,#a66e00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    /* background-color: #f9f9f9; */
    background: linear-gradient(135deg, #b07d10 0%,  #d4af37 20%,  #ffd700 40%,  #fff054 60%, #d4af37 80%, #a66e00 100%);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 3rem;
    /* color: #4CAF50; */
    color: #2d0303;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d0303;
}

/* Screenshots Section */
.screenshots {
    padding: 60px 0;
    /* background-color: #f9f9f9; */
    /* background:#2d0303; */
}

.screenshots h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    background: linear-gradient(135deg, 
     #b07d10 0%, 
     #d4af37 20%, 
     #ffd700 40%,
     #fff054 60%, 
     #d4af37 80%, 
     #a66e00 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}  

.carousel {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-item img {
    width: 100%;
    height: auto;
}

/* Download Section */
.download {
    padding: 80px 0;
    /* background-color: #4CAF50; */
    background: linear-gradient(135deg, #b07d10 0%, #d4af37 20%, #ffd700 40%, #fff054 60%, #d4af37 80%, #a66e00 100%);
    color: white;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d0303;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #454444;
}

.file-info {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    /* background-color: #333; */
    /* background: #2d0303; */
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo img {
      height: 85px;
    margin-bottom: 0px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        padding: 9px 20px;
    }
    
    .nav {
        margin-top: 5px;
    }
    
    .hero {
        padding: 120px 0 0px;
    }
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 0px;
        text-align: center;
        margin-top: 15px;
    }
    .features {
       padding: 0px 0 10px;
    }
    .features h2 {
      margin-bottom: 15px;
    }
    .features-grid {
      gap: 15px;
    }
    .cta-buttons {
        justify-content: center;
    }

    .screenshots {
      padding: 20px 0px;
    }
    .screenshots h2 {
      margin-bottom: 15px;
    }
    .download {
        padding: 25px 0px;
    }
    .footer {
        padding: 37px 0px 20px
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    .footer-logo img{
        height: 100px;
    }
    .logo img {
        height: 70px;
    }
}