* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    background-color: #e8e4f0;
    color: #333;
    line-height: 1.3;
}

h1 {
	font-weight: bold;
	line-height: 1;
	margin-bottom: .5rem;
}

h2 {
	font-weight: 600;
	margin-bottom: .5rem;
}

h3 {
	font-weight: 400;
	margin-bottom: .5rem;
}

a {
	font-weight: bold;
	color: #f99e42;
	text-decoration: none !important;
}

a:hover {
    text-decoration: underline;
	color: #B75C00;
}

/* Navigation */
nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.logo {
    text-decoration: none;
    display: block;
}

.logo-image {
    height: 60px;
    width: auto;
}

.logo {
    position: relative;
    text-decoration: none;
    display: block;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-white {
    position: relative;
    z-index: 2;
}

.logo-color {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
}

.logo:hover .logo-white,
.logo:active .logo-white {
    opacity: 0;
}

.logo:hover .logo-color,
.logo:active .logo-color {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    padding-bottom: 0.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    position: relative;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-links a.active {
    opacity: 1;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #f99e42;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay - Only applies on mobile */
@media (max-width: 640px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, #2f093d 0%, #1a1a1a 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        padding: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding-bottom: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }
}

/* Overlay backdrop */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 60% 40%, #f99e42 0%, #2f093d 70%);
    padding: 0;
    margin: 5.5rem auto 2rem;
    max-width: 1200px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    overflow: visible;
    height: 280px;
}

.hero-content {
    flex: 1;
    color: white;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    position: relative;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
}

.hero-dots {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
}

.dot.active {
    opacity: 1;
}

.founder-credit {
    position: absolute;
    bottom: 1.5rem;
    right: 385px;
    color: white;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
    z-index: 10;
    text-align: right;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 420px;
    width: auto;
    max-width: 375px;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 0 0 20px 0;
}

/* Hero content area with optional images */
.hero-content-area {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-slide-image {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Adjust h1 to work with flex layout */
.hero-content-area h2 {
    flex: 1;
	text-shadow:0px 0px 4px #2f093d, 0px 0px 4px #2f093d, 0px 0px 4px #2f093d;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

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

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2f093d;
}

.content-section p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #444;
    font-weight: 300;
}

/* Client Spotlight */
.client-spotlight {
    margin-top: 3rem;
}

.spotlight-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.spotlight-image {
    width: 200px;
    height: 200px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
	border: solid 1.5px #2f093d;
}

.spotlight-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.spotlight-content p {
    margin-bottom: 1rem;
}

.read-more {
    color: #f99e42;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2f093d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    background: linear-gradient(135deg, #2f093d 0%, #4a1560 100%);
    color: white;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2f093d;
    font-weight: 400;
}

.package-card.featured h3,
.package-card.featured .price,
.package-card.featured ul, .package-card.featured ul > li {
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 500;
    color: #f99e42;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.package-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #444;
    font-weight: 300;
}

.package-card.featured li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.package-card li:before {
    content: "✓ ";
    color: #f99e42;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #f99e42;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #e88a2d;
	color:#FFF;
}

/* About Page */
.about-hero {
    background: radial-gradient(circle at 120% 50%, #f99e42 0%, #2f093d 70%);
    padding: 2rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-hero p {
    font-size: 1.2rem;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

.team-section {
    margin-top: 3rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.team-info h3 {
    color: #2f093d;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.team-info .title {
    color: #f99e42;
    font-weight: 400;
    margin-bottom: 1rem;
    display: block;
}

/* Contact Form */
.contact-form {
    background-color: #d4cfe0;
    padding: 1.25rem;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: calc(100px + 1.25rem);
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background-color: white;
    font-size: 0.95rem;
    font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #f99e42;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e88a2d;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f99e42;
    font-weight: 400;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-section a:hover {
    color: #f99e42;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #f99e42;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-weight: 300;
}

.copyright p {
    font-size: 0.85rem;
}

/* Work Page Styles */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.work-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.work-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e8e4f0;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.work-card:hover .work-image {
    transform: scale(1.05);
}

.work-content {
    padding: 2rem;
}

.work-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2f093d;
}

.work-meta {
    color: #f99e42;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.work-link {
    color: #2f093d;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.work-link:hover {
    color: #f99e42;
}

/* Client Case Study Styles */
.client-hero {
    background: white;
    padding: 3rem 2rem;
    margin: 2rem auto;
    width: min(100% - 60px, 1200px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.client-logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.client-logo {
    max-width: 300px;
    height: auto;
}

.client-mission {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.client-mission h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2f093d;
}

.client-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.project-section {
    background: white;
    padding: 3rem 2rem;
    margin: 3rem auto;
    width: min(100% - 60px, 1200px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.project-section h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #2f093d;
}

.project-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #f99e42;
}

.project-section p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.project-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.project-section li {
    margin-bottom: 0.5rem;
    color: #444;
    line-height: 1.6;
}

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

.project-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.back-to-work {
    text-align: center;
    margin: 3rem auto;
    max-width: 1200px;
}

.back-to-work a {
    display: inline-block;
    color: #2f093d;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.back-to-work a:hover {
    color: #f99e42;
}

@media (max-width: 968px) {
    .client-mission h1 {
        font-size: 2rem;
    }
    
    .project-images {
        grid-template-columns: 1fr;
    }
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
    }
}


@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .work-image-container {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .client-logo {
        max-width: 200px;
    }
    
    .client-mission h1 {
        font-size: 1.8rem;
    }
    
    .project-section {
        padding: 2rem 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1240px) {
    .hero {
        margin: 5.5rem 2rem 2rem;
    }
    
    .about-hero {
        margin: 2rem 2rem;
    }
}

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

    .hero {
        margin: 5.5rem 1.5rem 2rem;
        height: 260px;
    }
    
    .about-hero {
        margin: 2rem 1.5rem;
    }

    .hero-content {
        padding: 1.5rem 1.5rem;
        max-width: 60%;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-image {
        height: 380px;
        max-width: 300px;
    }

    .founder-credit {
        right: 310px;
        font-size: 0.85rem;
        bottom: 1.5rem;
    }

    .spotlight-card,
    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        position: static;
    }

    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1rem;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .logo-image {
        height: 48px;
    }

    .hero {
        margin: 0;
        border-radius: 0;
        height: 400px;
        overflow: hidden;
    }

    .hero-content {
        padding: 2rem 1.5rem 8rem;
        max-width: 100%;
        padding-right: 1.5rem;
    }

    .hero-content-area {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        max-width: 100%;
    }

    .hero-slide-image {
        width: 100%;
        max-width: 150px;
        height: auto;
        aspect-ratio: 4/5;
        align-self: flex-start;
    }

    .hero-content-area h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .hero-dots {
        position: static;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 240px;
        max-width: 66.67%;
        right: 0;
        bottom: 0;
        object-position: center bottom;
        border-radius: 0;
    }

    .founder-credit {
        bottom: 1.5rem;
        left: 1.5rem;
        right: auto;
        font-size: 0.75rem;
        text-align: left;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .about-hero {
        margin:0;
        border-radius: 0;
        padding: 2rem 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }
}