* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Helvetica, Arial, sans-serif;
}

body {
    min-height: 100vh;
    background-color: #F1F2F9;
}

header {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1800px;
    margin: 0 auto;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: rgba(111, 127, 155, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.login-btn {
    padding: 0.5rem 1.5rem;
    background-color: white;
    color: #333;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.85);
}

.signup-btn {
    padding: 0.5rem 1.5rem;
    background-color: #6A40F2;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-btn:hover {
    background-color: #5933D1;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/hero-bg.png') center/cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    padding-bottom: 4rem;
    padding-top: 80px; /* Add space for header */
}

.hero-content {
    max-width: 1200px;
    padding: 2rem;
    width: 60%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background-color: #6A40F2;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn .arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover .arrow {
    transform: translateX(4px);
}

.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.modal-content button {
    padding: 0.8rem;
    background-color: #6A40F2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-content button:hover {
    background-color: #5933D1;
}

.signup-text {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.signup-text a {
    color: #6A40F2;
    text-decoration: none;
}

.signup-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .hero-content {
        width: 90%;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

.features {
    padding: 6rem 5%;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.features-container {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-image-column {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 0;
    padding-bottom: 133.33%; /* This creates a 3:4 aspect ratio (75% → 133.33%) */
    background-size: cover;
    background-position: center;
}

/* First feature image */
.features .image-container {
    background-image: url('../images/feature-img.png');
}

/* Second feature image */
.features-alt .image-container {
    background-image: url('../images/feature-img-2.png');
}

.logo-overlay {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 200px;
    z-index: 1;
}

.features-text-column {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.features-text-column h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
    margin-bottom: 0;
}

.features-text-column p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-top: 1rem;
}

.features-text-column .bottom-content {
    margin-top: auto;
}

.bottom-content p {
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.features-text-column .cta-btn {
    align-self: flex-start;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    border-radius: 50px;
}

.features-text-column .cta-btn .arrow {
    font-size: 1.6rem;
}

@media (max-width: 1024px) {
    .features .features-container {
        grid-template-columns: 1fr;
    }

    .features .features-text-column {
        padding-left: 0;
        order: 0;
    }
}

.features-alt {
    background-color: #F8F9FA;
}

.features-alt .features-container {
    grid-template-columns: 1fr 1fr;
}

.features-alt .features-text-column {
    padding-right: 0;
    padding-left: 2rem;
    order: -1;
}

@media (max-width: 1024px) {
    .features-alt .features-container {
        grid-template-columns: 1fr;
    }

    .features-alt .features-text-column {
        padding-left: 0;
        order: 0;
    }
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 5%;
    color: white;
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.1;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

@media (max-width: 768px) {
    .image-caption {
        font-size: 36px;
        padding: 2rem 5%;
    }

    .features-text-column .cta-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .features-text-column .cta-btn .arrow {
        font-size: 1.4rem;
    }
}

.features-alt .cta-btn {
    background-color: #F6BBA9;
    color: #000;
    transition: background-color 0.3s;
}

.features-alt .cta-btn:hover {
    background-color: #E5AA98; /* Slightly darker shade for hover */
}

footer {
    /* background-color: rgba(111, 127, 155, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 6rem 5% 3rem;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: rgba(111, 127, 155);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    max-width: 400px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 2rem;
}

.footer-about {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.legal-links {
    margin-bottom: 1rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.legal-links span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 1rem;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-logo {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-container {
        padding: 4rem 5% 2rem;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-links span {
        display: none;
    }
}

.legal-page {
    padding: 120px 5% 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 2rem;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin: 2rem 0 1rem;
}

.legal-content strong {
    font-weight: 500;
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 5% 2rem;
    }

    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 2rem;
    }
}

.login-page {
    padding: 120px 5% 4rem; /* Add padding to the top */
    height: 100vh; /* Adjust height to account for the header */
    display: flex;
    justify-content: center; /* Center the content */
    align-items: center; /* Center the content vertically */
}

.login-container {
    display: flex;
    width: 100%;
    max-width: 1200px; /* Set max-width to match index page */
    height: 100%; /* Full height of the parent */
}

.login-content {
    flex: 1;
    padding: 3rem;
    border-radius: 20px;
    /* Remove background and box-shadow */
    /* background: white; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    margin-right: 2rem; /* Space between columns */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

.tagline {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align items to the start */
    padding: 3rem;
}

.tagline-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the tagline content */
    align-items: center; /* Center the tagline content horizontally */
    flex-grow: 1; /* Allow this section to take up remaining space */
}

.register {
    margin-bottom: 1rem; /* Space between register section and tagline */
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center items vertically */
    justify-content: end;
}

.register p {
    font-size: 0.9rem; /* Smaller font size for the text */
    color: #666; /* Keep the same color */
    margin-right: 1.5rem; /* Space between text and button */
}

.tagline h2 {
    font-size: 2.5rem;
    font-weight: 200;
    line-height: 1.1;
    color: #333;
    margin-bottom: 1rem;
}

.tagline p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.register .cta-btn {
    font-size: 0.9rem; /* Smaller font size for the button */
    padding: 0.5rem 1rem; /* Adjust padding for the button */
    background-color: #6A40F2;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tagline .cta-btn:hover {
    background-color: #5933D1;
}

.social-login {
    margin: 2rem 0;
}

.social-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin: 0.5rem 0;
}

.facebook-btn {
    background-color: #3b5998;
    color: white;
}

.facebook-btn:hover {
    background-color: #2d4373;
}

.instagram-btn {
    background-color: #C13584;
    color: white;
}

.instagram-btn:hover {
    background-color: #9B2A6D;
}

.login-content p {
    margin-top: 1rem;
    color: #666;
}

.login-content a {
    color: #6A40F2;
    text-decoration: none;
}

.login-content a:hover {
    text-decoration: underline;
}

.signup-page {
    padding: 120px 5% 4rem; /* Add padding to the top */
    height: calc(100vh - 120px); /* Adjust height to account for the header */
    display: flex;
    justify-content: center; /* Center the content */
    align-items: center; /* Center the content vertically */
}

.signup-container {
    text-align: center;
    max-width: 600px; /* Set a max width for the signup container */
    width: 100%; /* Full width */
}

.signup-container h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
}

.signup-container p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.account-type {
    display: flex;
    justify-content: space-between; /* Space between buttons */
}

.account-btn {
    flex: 1; /* Allow buttons to take equal space */
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 0.5rem; /* Space between buttons */
}

.influencer-btn {
    background-color: #6A40F2; /* Influencer button color */
    color: white;
}

.influencer-btn:hover {
    background-color: #5933D1; /* Darker shade on hover */
}

.brand-btn {
    background-color: #F6BBA9; /* Brand button color */
    color: #000;
}

.brand-btn:hover {
    background-color: #E5AA98; /* Darker shade on hover */
} 