@import 'base.css';
@import 'animations.css';
@import 'sections/header.css';
@import 'sections/hero.css';
@import 'sections/about.css';
@import 'sections/features.css';
@import 'sections/feathers.css';
@import 'sections/contact.css';
@import 'sections/footer.css';
@import 'components/auth-modal.css';
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column; /* Stack content vertically */
        text-align: center;
        gap: 1.5rem;
    }
    .hero-image {
        /* Adjust max-width for image in stacked layout */
        max-width: 220px;
        margin: 0 auto; /* Center the image */
    }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default two columns */
    gap: 2rem;
}
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
}
@media (max-width: 992px) { /* Adjust breakpoint as needed */
    .fix-my-feathers-container {
        flex-direction: column; /* Stack content vertically */
        gap: 2rem;
        align-items: center; /* Center items when stacked */
    }
    .fix-my-feathers-image img {
        max-width: 220px; /* Adjust size for smaller screens */
        margin: 0 auto;
    }
}
.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap; /* Allow wrapping */
}
.contact-info-section, .contact-form-section {
    flex: 1; /* Allow sections to grow/shrink */
    min-width: 280px; /* Minimum width before wrapping */
}
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column; /* Stack content vertically */
        gap: 2rem;
        align-items: stretch; /* Stretch to full width */
    }
    .contact-info-section, .contact-form-section {
        min-width: 100%; /* Take full width when stacked */
    }
}.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow sections to wrap */
    gap: 2rem;
}
.footer-section {
    flex: 1 1 200px; /* Flexible sections, min-width 200px */
    min-width: 220px; /* Override to ensure a bit more space */
}
@media (max-width: 900px) { /* Adjust breakpoint for stacking */
    .footer-content {
        flex-direction: column; /* Stack footer sections vertically */
        gap: 1.5rem;
        align-items: flex-start; /* Align to the start when stacked */
    }
    .footer-section {
        min-width: 100%; /* Take full width when stacked */
        max-width: 100%;
    }
}
.auth-container {
    width: 400px; /* Default width */
    max-width: 95vw; /* Ensure it doesn't exceed viewport width */
    padding: 2.5rem 2rem; /* Default padding */
}
@media (max-width: 500px) { /* Adjust for smaller screens */
    .auth-container {
        width: 98vw; /* Almost full width on small screens */
        padding: 1rem; /* Reduced padding */
        border-radius: 0.75rem; /* Slightly smaller border radius */
    }
}
@media (max-width: 600px) {
    .floating-shape,
    .floating-element { /* Assuming you have .floating-element in your HTML */
        display: none;
    }
}

/* Adjustments for fixed header padding on smaller screens */
header {
    padding: 1rem 0; /* Your existing padding */
}
@media (max-width: 600px) {
    header {
        padding: 1rem 0.5rem; /* Slightly less padding on very small screens */
    }
}

/* Responsive Navigation */
.nav-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color); /* Your primary color */
    position: absolute; /* To position it inside the header */
    top: 16px;
    right: 18px;
    z-index: 1201; /* Ensure it's above other elements */
}

/* Styles for the navigation links themselves */
.nav-links {
    display: flex; /* Default for desktop */
    gap: 2rem; /* Default for desktop */
    list-style: none; /* Ensure no bullet points */
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide on small screens by default */
        flex-direction: column; /* Stack links vertically */
        gap: 1.2rem; /* Space between stacked links */
        position: absolute;
        top: 70px; /* Below the header */
        left: 0;
        width: 100vw; /* Full width */
        background: var(--white); /* Background for the dropdown */
        box-shadow: var(--shadow); /* Shadow for visual separation */
        padding: 1.2rem 0;
        z-index: 1100; /* Ensure it's above page content but below header */
    }
    .nav-links.active {
        display: flex; /* Show when 'active' class is added by JS */
    }
    .nav-toggle {
        display: block; /* Show hamburger icon on small screens */
    }
    /* Adjust nav container behavior if needed */
    .nav-container {
        /* Example: allow more flex-end space if hamburger is on right */
        gap: 1rem;
    }
}
/* Packages Section Styles */
.packages-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.packages-header {
    text-align: center;
    margin-bottom: 2rem;
}

.packages-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.packages-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.package-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list li::before {
    content: '\e5ca'; /* Material Icons check */
    font-family: 'Material Icons';
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.package-select-btn {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-select-btn:hover {
    transform: scale(1.05);
}

.price {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
}

.discounted-price {
    color: var(--primary-color);
    font-weight: bold;
    margin-left: 0.5rem;
}

.timer {
    font-size: 1rem;
    color: red;
    margin-top: 0.5rem;
}

.feature-comparison {
    margin-top: 3rem;
}

.feature-comparison h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-comparison table {
    width: 100%;
    border-collapse: collapse;
}

.feature-comparison th, .feature-comparison td {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--secondary-color);
}

.feature-comparison th {
    background: var(--primary-color);
    color: var(--white);
}

.feature-comparison .material-icons {
    font-size: 1.5rem;
}

/* 50/30/20 Calculator Styles */
.fifty-thirty-twenty-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.fifty-thirty-twenty-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

.fifty-thirty-twenty-header p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.calculator-form label {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.calculator-form input {
    padding: 0.75rem;
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    width: 100%;
    font-size: 1rem;
}

#calculate-btn {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#calculate-btn:hover {
    transform: scale(1.05);
}

.calculator-results {
    margin-top: 2rem;
    text-align: center;
}

.calculator-results h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.chart-container {
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.budget-amounts p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.download-prompt {
    margin-top: 2rem;
}

.download-prompt p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.qr-code {
    max-width: 150px;
    display: block;
    margin: 0 auto;
}

.download-link {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 600;
}

.download-link:hover {
    background: var(--secondary-color);
}

.rating-simple-section {
  /* Matches the section color where you marked in red */
  background: linear-gradient(135deg, #ecd9f8 0%, #d8c3f7 100%);
  padding: 60px 0 45px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-content {
  text-align: center;
}

.rating-content h2.orbitron {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.37rem;
  color: #6f42c1;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.rating-content .subtitle.quicksand {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.97rem;
  color: #69488c;
  margin-bottom: 12px;
}

.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 7px;
}

.rating-score.orbitron {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: #a259cf;
  font-weight: 700;
  margin-right: 6px;
}

.stars-row .star {
  font-size: 1.45rem;
  color: #a259cf;      /* Your main purple brand shade */
  vertical-align: middle;
}

.rating-count.quicksand {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.92rem;
  color: #8563b8;
  margin-top: 1px;
}

