/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1A1A1A;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #E0D9ED 0%, #C8B5E8 100%);
    color: #1A1A1A;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(224, 217, 237, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #E0D9ED;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #E0D9ED;
}

.btn-secondary:hover {
    background: #E0D9ED;
    color: #1A1A1A;
}

.btn-download {
    background: linear-gradient(135deg, #E0D9ED 0%, #C8B5E8 100%);
    color: #1A1A1A;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 217, 237, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E0D9ED;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #E0D9ED;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #E0D9ED;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, #E0D9ED 0%, #C8B5E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #E0D9ED;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-screen {
    width: 280px;
    height: 500px;
    background: #1A1A1A;
    border-radius: 30px;
    padding: 20px;
    border: 3px solid #E0D9ED;
    position: relative;
    overflow: hidden;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #E0D9ED;
    font-weight: 600;
}

.fish-icon {
    width: 24px;
    height: 24px;
}

.app-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-card {
    background: #2A2A2A;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.fishing-hours {
    background: linear-gradient(135deg, #4A4A4A 0%, #2A2A2A 100%);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(224, 217, 237, 0.1) 100%);
    opacity: 0.3;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-title {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.card-score {
    display: block;
    font-size: 0.8rem;
    color: #E0D9ED;
    margin-bottom: 5px;
}

.card-time {
    display: block;
    font-size: 0.8rem;
    color: #cccccc;
}

.card-text {
    display: block;
    font-size: 0.8rem;
    color: #cccccc;
    margin-bottom: 3px;
}

/* Floating Elements */
.floating-fish {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #E0D9ED 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-fish-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-fish-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(224, 217, 237, 0.2);
    border-radius: 50%;
    animation: bubble 8s ease-in-out infinite;
}

.floating-bubble-1 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.floating-bubble-2 {
    top: 70%;
    left: 20%;
    animation-delay: 4s;
}

.floating-bubble-3 {
    top: 50%;
    right: 5%;
    animation-delay: 7s;
}

/* Decorative Elements */
.decorative-fishing-rod {
    position: absolute;
    width: 80px;
    height: 200px;
    background: linear-gradient(45deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
    border-radius: 5px;
    opacity: 0.1;
    z-index: -1;
}

.decorative-fishing-rod::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: #E0D9ED;
    border-radius: 1px;
}

.decorative-fishing-rod-1 {
    top: 15%;
    right: 5%;
    transform: rotate(-15deg);
    animation: fishing-rod-sway 8s ease-in-out infinite;
}

.decorative-fishing-rod-2 {
    bottom: 20%;
    left: 8%;
    transform: rotate(20deg);
    animation: fishing-rod-sway 8s ease-in-out infinite reverse;
}

.decorative-fish {
    position: absolute;
    width: 40px;
    height: 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #E0D9ED 100%);
    border-radius: 20px 5px 5px 20px;
    opacity: 0.15;
    z-index: -1;
}

.decorative-fish::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #E0D9ED;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.decorative-fish-1 {
    top: 25%;
    left: 15%;
    animation: fish-swim 12s ease-in-out infinite;
}

.decorative-fish-2 {
    top: 45%;
    right: 25%;
    animation: fish-swim 12s ease-in-out infinite reverse;
}

.decorative-fish-3 {
    bottom: 30%;
    left: 30%;
    animation: fish-swim 15s ease-in-out infinite;
}

.decorative-lake {
    position: absolute;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1) 0%, rgba(0, 100, 200, 0.05) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.1;
    z-index: -1;
}

.decorative-lake-1 {
    top: 35%;
    right: 10%;
    animation: lake-ripple 10s ease-in-out infinite;
}

.decorative-lake-2 {
    bottom: 15%;
    left: 20%;
    animation: lake-ripple 10s ease-in-out infinite reverse;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #1A1A1A;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: #2A2A2A;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #E0D9ED;
}

.step-card p {
    color: #cccccc;
    line-height: 1.6;
}

.app-preview {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.preview-phone {
    width: 250px;
    height: 450px;
    background: #1A1A1A;
    border-radius: 25px;
    padding: 15px;
    border: 2px solid #E0D9ED;
}

.preview-screen {
    background: #2A2A2A;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
}

.preview-header {
    text-align: center;
    color: #E0D9ED;
    font-weight: 600;
    margin-bottom: 20px;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.forecast-item, .weather-item, .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #3A3A3A;
}

.forecast-label, .weather-label, .stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

.forecast-value, .weather-value, .stat-value {
    color: #E0D9ED;
    font-weight: 600;
}

.forecast-score {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(224, 217, 237, 0.1);
    border-radius: 10px;
}

.score-label {
    display: block;
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.score-value {
    display: block;
    color: #E0D9ED;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #1A1A1A;
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 1px solid #3A3A3A;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #E0D9ED;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 217, 237, 0.1);
    border-radius: 15px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #E0D9ED;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Mockups Section */
.mockups {
    padding: 80px 0;
    background: #1A1A1A;
}

.mockups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mockup-item {
    text-align: center;
}

.mockup-phone {
    width: 200px;
    height: 350px;
    background: #1A1A1A;
    border-radius: 20px;
    padding: 10px;
    border: 2px solid #E0D9ED;
    margin: 0 auto 1.5rem;
}

.mockup-screen {
    background: #2A2A2A;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
}

.mockup-header {
    text-align: center;
    color: #E0D9ED;
    font-weight: 600;
    margin-bottom: 15px;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.log-entry {
    background: #3A3A3A;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
}

.log-date {
    display: block;
    color: #E0D9ED;
    font-size: 0.8rem;
    font-weight: 600;
}

.log-location {
    display: block;
    color: #cccccc;
    font-size: 0.7rem;
}

.log-catch {
    display: block;
    color: #FF6B35;
    font-size: 0.7rem;
    font-weight: 600;
}

.mockup-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #E0D9ED;
}

.mockup-item p {
    color: #cccccc;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #2A2A2A;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #3A3A3A;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #E0D9ED;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar svg {
    width: 100%;
    height: 100%;
}

.author-info h4 {
    color: #E0D9ED;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #cccccc;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #E0D9ED 0%, #C8B5E8 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.cta-description {
    font-size: 1.1rem;
    color: #2A2A2A;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1A1A1A;
    font-weight: 500;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
}

.cta .btn-primary {
    background: #1A1A1A;
    color: #E0D9ED;
}

.cta .btn-primary:hover {
    background: #2A2A2A;
}

/* Footer */
.footer {
    background: #1A1A1A;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    width: 24px;
    height: 24px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E0D9ED;
}

.footer-brand p {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: #E0D9ED;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #E0D9ED;
}

.footer-download {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3A3A3A;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bubble {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.4;
    }
}

@keyframes fishing-rod-sway {
    0%, 100% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(-5deg);
    }
}

@keyframes fish-swim {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    25% {
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        transform: translateX(40px) translateY(0px);
    }
    75% {
        transform: translateX(20px) translateY(10px);
    }
}

@keyframes lake-ripple {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}
.hero img{
    width: 350px;
}
.how-it-works img{
    width: 350px;
    border-radius: 20px;
    border: 2px solid #000;  
}
.mockups-grid img{
    width: 100px;
       border-radius: 10px;
    border: 2px solid #000;
    margin-left: 10px;
    margin-right: 10px;  
}
.how-it-works .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}