/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #FAFAFA;
    color: #2C2C2C;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F0F0F0;
    background-color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2C2C2C;
    letter-spacing: -0.02em;
}

/* Navigation */
.nav {
    display: flex;
    gap: 0.5rem;
}

.nav-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-family: inherit;
    position: relative;
}

.nav-tab:hover {
    color: #2C2C2C;
    background-color: #F5F5F5;
}

.nav-tab.active {
    color: #2C2C2C;
    background-color: #E8F4FD;
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: #E8F4FD;
    border-radius: 2px;
}

/* Tab Content */
.tab-content {
    display: none;
    flex: 1;
    min-height: calc(100vh - 100px);
}

.tab-content.active {
    display: flex;
    flex-direction: column;
}

/* Main content */
.main {
    justify-content: center;
    align-items: center;
    padding: 0 4rem;
    text-align: center;
    background-image: url('./assets/Potential quotes.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.hero {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: #2C2C2C;
    letter-spacing: -0.05em;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-emoji {
    font-size: 1.2em;
    margin-left: 0.25em;
    display: inline-block;
    vertical-align: middle;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 2;
}

.cta-button {
    background: none;
    border: 2px solid #E8F4FD;
    color: #2C2C2C;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-family: inherit;
}

.cta-button:hover {
    background-color: #E8F4FD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 244, 253, 0.3);
}

/* Section styles */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

/* About Us Tab */
#about {
    background-color: #F8F9FA;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.founder-info h3 {
    font-size: 2rem;
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 2rem;
}

.founder-story {
    font-size: 1.1rem;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.company-description {
    font-size: 1.2rem;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.highlight {
    font-weight: 600;
    color: #2C2C2C;
}

.awards-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.awards-text p {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.awards-ending {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

/* Our Work Tab */
#work {
    background-color: white;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
}

.work-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.work-image {
    height: 200px;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #F0F0F0;
}

.placeholder {
    color: #999;
    font-size: 1.1rem;
    font-weight: 500;
}

.work-item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2C2C2C;
    margin: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.work-item p {
    color: #666;
    margin: 0 1.5rem 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-button:hover {
    background-color: #F5F5F5;
    color: #666;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2C2C2C;
}

.modal-header p {
    color: #666;
    margin-bottom: 2rem;
}

/* Potential Clients Section */
.clients-content, .awards-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.clients-intro, .awards-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.clients-grid, .awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-item, .award-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    text-align: center;
}

.client-item:hover, .award-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.client-logo, .award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.client-item h3, .award-item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.client-item p, .award-item p {
    color: #666;
    font-size: 1rem;
    font-weight: 400;
}

/* Contact Modal */
.contact-form {
    text-align: left;
    margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #F0F0F0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #E8F4FD;
}

.submit-btn {
    background-color: #E8F4FD;
    border: none;
    color: #2C2C2C;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-family: inherit;
    width: 100%;
}

.submit-btn:hover {
    background-color: #D1E9FB;
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        width: 100%;
        justify-content: center;
    }
    
    .nav-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .main {
        padding: 0 2rem;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-content {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        padding: 2rem 1rem 1.5rem 1rem;
        margin: 1rem;
    }
    
    .close-button {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
        z-index: 10;
    }
    
    .clients-grid, .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .client-item, .award-item {
        padding: 1.5rem;
    }
    
    .client-logo, .award-icon {
        font-size: 2.5rem;
    }
    
    .awards-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .awards-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1rem 0.5rem 1rem 0.5rem;
    }
    .close-button {
        top: 0.25rem;
        right: 0.25rem;
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
} 

/* Live Potential Main Project */
.main-project-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6rem;
}
.coming-soon-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.coming-soon-box {
    width: 100%;
    max-width: 900px;
    min-height: 380px;
    background: #E8F4FD;
    border: 2px solid #B6DFFC;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C2C2C;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 48px rgba(182, 223, 252, 0.18);
    margin-bottom: 0;
    transition: box-shadow 0.3s;
    text-align: center;
    padding: 2rem;
}
.coming-soon-box:hover {
    box-shadow: 0 16px 64px rgba(182, 223, 252, 0.25);
}

.main-project-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 8px 48px rgba(182, 223, 252, 0.18);
    display: block;
    margin: 0 auto;
}

/* Remove the coming-soon-box styles if not used elsewhere */
.coming-soon-box { display: none !important; }

@media (max-width: 900px) {
    .main-project-image {
        max-width: 98vw;
        border-radius: 16px;
    }
}
@media (max-width: 600px) {
    .main-project-image {
        max-width: 100vw;
        border-radius: 10px;
    }
}

/* Archive Dropdown */
.archive-section {
    width: 100%;
    max-width: 700px;
    margin: 6rem auto 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.archive-toggle {
    background: none;
    border: none;
    color: #2C2C2C;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    position: relative;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}
.archive-toggle:hover {
    color: #0077B6;
}
.archive-toggle::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 1rem;
    transition: transform 0.3s;
}
.archive-toggle.open::after {
    content: '▲';
}
.archive-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
}
.archive-content.open {
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 2rem;
}
.archive-grid {
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .coming-soon-box {
        max-width: 98vw;
        font-size: 2.2rem;
        min-height: 200px;
        padding: 1.2rem;
    }
}
@media (max-width: 768px) {
    .main-project-box {
        max-width: 100%;
    }
    .coming-soon-box {
        font-size: 1.3rem;
        min-height: 100px;
        padding: 1rem;
        border-radius: 18px;
    }
    .archive-section {
        max-width: 100%;
        margin-top: 4rem;
    }
} 

.main-project-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.audio-play-btn {
    background: #E8F4FD;
    border: 2px solid #B6DFFC;
    color: #2C2C2C;
    font-size: 2.2rem;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 12px rgba(182, 223, 252, 0.12);
    outline: none;
}
.audio-play-btn:hover, .audio-play-btn:focus {
    background: #D1E9FB;
    border-color: #7EC3F6;
    box-shadow: 0 4px 24px rgba(182, 223, 252, 0.18);
}
@media (max-width: 900px) {
    .main-project-media {
        gap: 1rem;
    }
    .audio-play-btn {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}
@media (max-width: 600px) {
    .main-project-media {
        flex-direction: column;
        gap: 0.5rem;
    }
    .audio-play-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-left: 0;
    }
} 

.main-project-header-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}
.audio-play-btn-simple {
    background: none;
    border: 2px solid #E8F4FD;
    color: #2C2C2C;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    outline: none;
}
.audio-play-btn-simple:hover, .audio-play-btn-simple:focus {
    background: #E8F4FD;
    border-color: #B6DFFC;
    color: #0077B6;
}
@media (max-width: 600px) {
    .main-project-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .audio-play-btn-simple {
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1rem;
    }
} 

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    margin-top: 1.5rem;
    font-size: 1.08rem;
    color: #0077b5;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
}
.linkedin-link:hover, .linkedin-link:focus {
    color: #005983;
    border-bottom: 1px solid #0077b5;
    text-decoration: none;
}
.linkedin-icon {
    font-size: 1.2em;
    vertical-align: middle;
} 

.clients-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.clients-text p {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .founder-info {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .company-description {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .highlight {
        padding: 0.05rem 0.2rem;
        font-size: 1rem;
    }
    .clients-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .clients-text p {
        font-size: 0.9rem;
    }
} 