@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: black;
    overflow-x: hidden;
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 12px;
    transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: #c9302f;
}

/* Navigation Bar */
nav {
    width: 100%;
    height: 10vh;
    background-color: #1f1f1f;
    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: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 10px #04BFAD;
}

.hamburger {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: white;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
    display: none;
}

.cancel {
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    right: 15px;
    display: none;
}

.nav-container .links {
    display: flex;
    gap: 20px;
}

.nav-container .links a {
    color: white;
    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: #1f1f1f;
    padding: 15px 0;
    border-top: 1px solid #b74b4b;
    z-index: 9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    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: white;
    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 {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    color: white;
    font-size: 1.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.dropdown .cancel:hover {
    opacity: 1;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-container .links {
        display: none;
    }

    .cancel {
        display: block;
    }

    .dropdown {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .nav-container .links {
        display: flex;
    }

    .dropdown {
        display: none;
    }
}

/* 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: #121212;
  border: 2px solid #04BFAD;
  border-radius: 15px;
  padding: 30px 35px;
  margin-bottom: 3rem;
  box-shadow: 0 8px 20px rgba(4, 191, 173, 0.3);
  transition: box-shadow 0.3s ease;
}

.competitor-analysis:hover {
  box-shadow: 0 12px 30px rgba(4, 191, 173, 0.6);
}

.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.6);
}

.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.5);
}

.swot-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.swot-list li {
  background: #222;
  margin-bottom: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.7);
  transition: background-color 0.3s ease;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #ddd;
}

.swot-list li strong {
  color: #04BFAD;
  font-weight: 700;
}

.swot-list li:hover {
  background-color: #04BFAD;
  color: #121212;
  cursor: default;
}

.swot-list li:hover strong {
  color: #121212;
}

/* Color coding for each SWOT category */
.strengths li {
  border-left: 5px solid #3dad2b; /* green */
}

.weaknesses li {
  border-left: 5px solid #f34c7f; /* pink/red */
}

.opportunities li {
  border-left: 5px solid #04BFAD; /* teal */
}

.threats li {
  border-left: 5px solid #c9302f; /* red */
}

/* 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: #1f1f1f;
    text-align: center;
    padding: 20px 0;
    margin-top: 3rem;
}

footer .text {
    color: #ccc;
    font-size: 0.9rem;
}

footer a {
    color: #04BFAD;
    font-weight: bold;
    text-decoration: none;
}

/* ========== New Content Styling ========== */

/* 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.5);
}

/* Content Blocks */
.content-block {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    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.4);
}

/* Subtitles */
.subtitle {
    font-size: 1.4rem;
    color: #f34c7f;
    margin-bottom: 1rem;
}

/* Paragraph Text */
.content-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f0f0f0;
}

/* Highlight Box */
.highlight {
    background-color: #2e2e2e;
    border-left: 4px solid #3dad2b;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #d6ffd8;
    border-radius: 10px;
}



/* Responsive Utility */
@media screen and (max-width: 600px) {
    .content-block, .persona-card {
        padding: 20px;
    }
.persona-grid {
                grid-template-columns: 1fr;
            }
    .section-title {
        font-size: 1.6rem;
    }
}


