/* Tessera Amoris - Main Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight-blue: #0c1b33;
    --gold: #D4AF37;
    --ivory: #FFFFF0;
    --warm-gray: #76777A;
    --transparent-dark: rgba(12, 27, 51, 0.8);
    --transparent-gold: rgba(212, 175, 55, 0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--midnight-blue);
    background-color: var(--ivory);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--midnight-blue);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--midnight-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--gold);
    color: var(--midnight-blue);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--midnight-blue);
    color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--midnight-blue);
}

.text-center {
    text-align: center;
}

.section {
    padding: 5rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 1rem auto 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(12, 27, 51, 0.95) 0%, rgba(12, 27, 51, 0.85) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header.scrolled {
    background: linear-gradient(135deg, rgba(12, 27, 51, 0.98) 0%, rgba(12, 27, 51, 0.95) 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    margin-right: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: var(--ivory);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.apply-btn {
    background-color: var(--gold);
    color: var(--midnight-blue);
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: var(--ivory);
    color: var(--midnight-blue);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url('../images/hero_cinematic_couple.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 27, 51, 0.5) 0%, rgba(12, 27, 51, 0.3) 50%, rgba(212, 175, 55, 0.15) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(12, 27, 51, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--ivory);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: heroTitleFade 2s ease-out;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    animation: heroSubtitleFade 2s ease-out 0.5s both;
}

@keyframes heroTitleFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Purpose Statement Section */
.purpose {
    background-color: var(--ivory);
    padding: 5rem 0;
    text-align: center;
}

.purpose-content {
    max-width: 800px;
    margin: 0 auto;
}

.purpose-title {
    color: var(--midnight-blue);
    margin-bottom: 2rem;
}

.purpose-text {
    font-size: 1.2rem;
    color: var(--midnight-blue);
    margin-bottom: 2rem;
}

.purpose-quote {
    position: relative;
    padding: 2rem;
    margin: 3rem 0;
    background-color: var(--transparent-gold);
    border-left: 4px solid var(--gold);
}

.purpose-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--midnight-blue);
}

.purpose-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--gold);
}

/* Genesis Quote Section */
.genesis-quote {
    position: relative;
    padding: 6rem 0;
    background-color: var(--midnight-blue);
    overflow: hidden;
}

.genesis-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/genesis_quote.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.genesis-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--ivory);
}

.genesis-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.genesis-reference {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--gold);
}

/* Legacy Framework Section */
.framework {
    padding: 5rem 0;
    background-color: var(--ivory);
}

.framework-title {
    text-align: center;
    margin-bottom: 4rem;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.framework-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.framework-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.framework-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.framework-item-title {
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.framework-item-text {
    color: var(--warm-gray);
}

/* Process Section */
.process {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.process-title {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.process-step {
    flex: 0 0 calc(33.333% - 2rem);
    margin: 1rem;
    text-align: center;
    position: relative;
}

.process-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--midnight-blue);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.process-step-title {
    color: var(--midnight-blue);
    margin-bottom: 1rem;
}

.process-step-text {
    color: var(--warm-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--midnight-blue);
    color: var(--ivory);
}

.testimonials-title {
    text-align: center;
    color: var(--ivory);
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--gold);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--gold);
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--ivory);
    opacity: 0.7;
}

/* Call to Action Section */
.cta {
    padding: 5rem 0;
    background-color: var(--ivory);
    text-align: center;
}

.cta-title {
    margin-bottom: 1.5rem;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background-color: var(--midnight-blue);
    color: var(--ivory);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-about {
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 0.8rem;
}

.footer-link a {
    color: var(--ivory);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-link a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    margin-right: 1rem;
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--ivory);
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--midnight-blue);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.4s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .genesis-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .framework-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Who We Serve Section */
.who-we-serve {
    padding: 5rem 0;
    background-color: var(--ivory);
}

.serve-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.serve-description {
    font-size: 1.2rem;
    color: var(--midnight-blue);
    margin-bottom: 0;
}

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

.serve-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.serve-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.serve-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--gold);
    color: var(--midnight-blue);
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.serve-item-title {
    color: var(--midnight-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.serve-item-text {
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Animation for scroll effects */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.contact-description {
    font-size: 1.2rem;
    color: var(--midnight-blue);
    margin-bottom: 0;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-title,
.contact-form-title {
    color: var(--midnight-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--midnight-blue);
    font-size: 1.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-details span {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.contact-form-container {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--midnight-blue);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    margin-top: 0.2rem;
}

.checkbox-item label {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.4;
}

.contact-submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Responsive adjustments for contact section */
@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* Enhanced Logo Styling */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::before {
    opacity: 1;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

/* Logo text enhancement for better readability */
.logo img {
    position: relative;
    z-index: 2;
}

/* Elegant brand signature */
.brand-signature {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0.8;
    font-style: italic;
    white-space: nowrap;
    margin-top: 2px;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
    
    .brand-signature {
        font-size: 0.6rem;
    }
}

_finished
