@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    overflow-x: hidden;
    color: #1a1a1a;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #e6e6e6;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 12px;
    transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: #c9302f;
}

/* Navigation Bar */
nav {
    width: 100%;
    height: 10vh;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: #222;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px #04BFAD;
}

.hamburger, .cancel {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: #333;
    font-size: 1.5rem;
    display: none;
}

.nav-container .links {
    display: flex;
    gap: 20px;
}

.nav-container .links a {
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-container .links a:hover {
    color: #04BFAD;
}

/* Dropdown Menu */
.dropdown {
    display: none;
    position: absolute;
    top: 10vh;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 15px 0;
    border-top: 1px solid #ccc;
    z-index: 9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
}

.dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown .links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.dropdown .links a {
    color: #222;
    background: #f3f3f3;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropdown .links a:hover {
    background-color: #b74b4b;
    color: #fff;
}

.dropdown .cancel:hover {
    opacity: 1;
}
@media (max-width: 768px) {
    .nav-container .links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Optional: make the nav full-width and stacked on mobile */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }
}


/* Main Section */
.main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10vh 20px 5vh 20px;
    flex-wrap: wrap;
}

.image img {
    width: 84%;
    height: auto;
    border-radius: 15px;
    border: 5px solid #04BFAD;
}

/* Sections */
section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
}

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

section img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    border: 3px solid #04BFAD;
    margin: 10px 0;
}

/* Image Grid for High Fidelity Wireframes */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-top: 2rem;
}

.image-item {
    text-align: center;
}

.image-item img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #04BFAD;
    transition: transform 0.3s ease;
}

.image-item img:hover {
    transform: scale(1.05);
}

.competitor-section {
    max-width: 900px;
    margin: 4rem auto 5rem auto;
    padding: 0 20px;
}

.competitor-analysis {
    background-color: #ffffff;
    border: 2px solid #04BFAD;
    border-radius: 15px;
    padding: 30px 35px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 20px rgba(4, 191, 173, 0.15);
    transition: box-shadow 0.3s ease;
}

.competitor-analysis:hover {
    box-shadow: 0 12px 30px rgba(4, 191, 173, 0.3);
}

.competitor-analysis h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #04bfad;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.competitor-analysis h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
    color: #3dad2b;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.swot-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.swot-list li {
    background: #f0f0f0;
    margin-bottom: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #333;
}

.swot-list li strong {
    color: #04BFAD;
    font-weight: 700;
}

.swot-list li:hover {
    background-color: #04BFAD;
    color: white;
    cursor: default;
}

.swot-list li:hover strong {
    color: white;
}

/* Color coding for each SWOT category */
.strengths li {
    border-left: 5px solid #3dad2b;
}

.weaknesses li {
    border-left: 5px solid #f34c7f;
}

.opportunities li {
    border-left: 5px solid #04BFAD;
}

.threats li {
    border-left: 5px solid #c9302f;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .competitor-analysis {
        padding: 20px 20px;
    }
    .competitor-analysis h2 {
        font-size: 1.5rem;
    }
    .competitor-analysis h3 {
        font-size: 1.1rem;
    }
    .swot-list li {
        font-size: 1rem;
        padding: 10px 14px;
    }
}

/* Footer */
footer {
    background-color: #eeeeee;
    text-align: center;
    padding: 20px 0;
    margin-top: 3rem;
}

footer .text {
    color: #555;
    font-size: 0.9rem;
}

footer a {
    color: #04BFAD;
    font-weight: bold;
    text-decoration: none;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    color: #04BFAD;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Content Blocks */
.content-block {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(4, 191, 173, 0.2);
}
