body{
	margin: 0;
	padding: 0;
	text-align: center;
	color: #fbf5db;
}
	
@font-face {
	font-family: 'Quera';
	src: url("../fonts/Quera/Quera-DEMO-BF68be80d1aceec.otf") format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'GCArturm';
	src: url("../fonts/GCArturm/GCarturmDemo-Regular-BF6902ecb4ad10b.ttf") format('truetype');
	font-weight: normal;
}

@font-face {
	font-family: 'GCArturm';
	src: url("../fonts/GCArturm/GCarturmDemo-Bold-BF6902ecb3f1635.ttf") format('truetype');
	font-weight: bold;
}

@font-face {
	font-family: 'GCArturm';
	src: url("../fonts/GCArturm/GCarturmDemo-Black-BF6902ecb39a73e.ttf") format('truetype');
	font-weight: 900;
}

h1, h2, h3, h4, h5 {
	font-family: 'GCArturm', sans-serif;
}

a, p {
	font-family: 'Quera', sans-serif;
}

button, .title, .hero-line1, .hero-line2 {
	font-family: 'GCArturm', sans-serif;
}

/* NAVIGATION */
.navbar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 1rem;
	background: #de6536;
	font-family: 'Poppins', sans-serif;
	z-index: 100;
	position: fixed;
	width: 100%;
}
.nav-links{
	display: block;
	gap: 1rem;
}
.nav-links ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a{
	color: #fbf5db;
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 10px;
	transition: 0.3s ease;
	font-weight: 500;
}

.nav-links li a:hover {
	color: #1F1619;
}

.nav-links li a.active{
	color: #1f1619;
	font-weight: 600;
}

.navbar .logo{
	width: 100px;
}
.navbar ul{
	list-style: none;
	display: flex;
	gap: 5px;
	margin: 0;
	padding: 0;
	position: relative;
}
.navbar a{
	position: relative;
	text-decoration: none;
	color: #fbf5db;
	font-weight: 400;
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	text-align: center;
	min-width: 110px;
	z-index:0;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}
/* HERO */
.hero {
    position: relative;
    height: 70vh;
    padding-top: 20px;
    padding-bottom: 30px;
    min-height: 350px;
    height: auto;
    display: flex;
    align-items: flex-end;
    background: #fbf5db;
}
.hero-text {
    color: #1f1619;
    position: absolute;
    bottom: 20px;
    left: 20px;
    line-height: 1.1;
    text-align: left;
}
.hero-text .hero-line1,
.hero-text .hero-line2 {
  margin: 0;
  font-size: 43px;
  color: #1f1619;
}

.hero-text .highlight {
  color: #de6536;
  font-size: 63px;
}

.hero-small {
    font-size: 43px;
    font-weight: 600;
    text-align: left;
}

.hero-tagline {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 15%;
    text-align: right;
}

.hero-tagline-text {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #1f1619;
}

.hero-shapes img {
    width: 480px;
}

.hero-button {
    width: 140px;
    cursor: pointer;
}

/* PEDICAB ABSTRACT SHAPE */
.pedicab-abstract-shape {
    background: #fbf5db;
}
.pedicab-abstract-shape img {
    width: 100%;
    height: auto;
    display: block;
}

/* INTRO */
.intro {
    width: 100%;
    background: #fbf5db;
}

.intro-container {
    display: flex;
    border-radius: 30px;
    background: #ffcfa3;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 60px 40px;
    margin:auto;
    text-align: left;
}

.intro p {
    color: #1f1619;
}
.intro-logo {
    width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.intro-text {
    max-width: 600px;
    margin: 20px auto;
    font-size: 15px;
}
.intro-icons {
    margin-top: 15px;
    width: 80px;
}

/* STORIES */
.stories {
    padding: 60px 80px;
    background: #fbf5db;
    text-align: left;
}
.stories-desc {
    color: #1f1619;
    text-align: left;
    padding-right: 600px;
}
.stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    color: #1f1619;
}
.stories-grid-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5px;

}
.story-item {
    text-align: left;
    position: relative;
    overflow: hidden;
    padding: 15px;
    padding-top: 240px;
    border-radius: 30px;
    background: #e4dfcc;
}
.image-wrapper {
    position: relative;
    overflow: hidden;
}
.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 30px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(222, 101, 54, 0.5); /* semi-transparent #de6536 */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #fff;
    font-weight: bold;
    text-align: left;
    padding-left: 15px;
    border-radius: 30px;
}
.stories-btn {
    margin-top: 20px;
    padding: 10px 20px;
    border: 2px solid black;
    background: none;
    cursor: pointer;
    border-radius: 20px;
}

/* CAMPAIGN */
.campaign {
    background: #fbf5db;
}
.campaign-container {
    border-radius: 25px;
    padding: 60px;
    background: #ffcfa3;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.campaign p, h2{
    color: #1f1619;
}
.campaign-left img {
    width: 300px;
    border-radius: 30px;
}
.campaign-right {
    max-width: 500px;
    text-align: left;
    justify-content: flex-start;
}

.campaign-right p {
    font-size: 18px;
}
.campaign-btn {
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 20px;
    background: #2d2d2d;
    color: white;
    border: none;
    cursor: pointer;
}

.campaign-right img{
    display: block;
    width: 160px;
}

/* team */
.index-team-section {
    text-align: center;
    padding: 70px 40px;
    background: #fbf5db;
    justify-content: center;
    align-items: center;
}
.index-team-section p {
    max-width: 600px;
    margin: 0 auto; 
    line-height: 1.3;
}
.team-btn {
    margin-top: 20px;
    background: #2d2d2d;
    color: white;
    padding: 10px 25px;
    border: none;
}
.index-team-section p, h2 {
    color: #1f1619;
}
.index-team-section img {
    display: block;
    margin: 25px auto 0 auto;
    width: 160px;
}

/* PROJECT PAGE TOP SECTION */
.project-top {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
    align-items: center;
    background: #fbf5db;
    padding-top: 120px;
}
.pasada-videos {
    background: #fbf5db;
    padding-bottom: 25px;
}
.project-text {
    max-width: 45%;
    text-align: left;
}

.project-text h2{
    font-size: 48px;
}

.project-video-box {
    width: 280px;
    height: 260px;
    background: #1f1619;
    border-radius: 20px;
}

/* PASADA TITLE */
.pasada-section {
    background: #ffcfa3;
    text-align: center;
    padding-top: 25px;
    border-radius: 30px;
}

.pasada-section h3 {
    color: #de6536;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 48px;
}

/* VIDEO ROWS */
.project-videos {
    padding: 40px 80px;
}

.project-row {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
    padding: 40px;
    
}

.project-row.reversed {
    flex-direction: row-reverse;
    text-align: right;
}

.project-thumb img {
    width: 600px;
    border: 4px dashed #1f1619;
    border-radius: 30px;
}

.project-info {
    max-width: 450px;
}

.project-info h4 {
    color: #de6536;
    font-size: 48px;
    margin-bottom: 10px;
}

.project-info p {
    color: #1f1619;
    line-height: 1.5;
    font-size: 18px;
}

/* FOOTER EMAIL */
.footer-email {
    color: white;
    text-decoration: none;
}

.footer-email:hover {
    color: #de6536;
}

.about-container {
    background: #fbf5db;
}

/* STORY */
.story-hero {
    display: flex;
    gap: 5px;
    padding: 60px 80px;
    align-items: center;
    justify-content: center;
    background: #fbf5db;
    padding-top: 100px;
}

.hero-thumb img {
    width: 500px;
    border-radius: 30px;
}

.hero-info h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #fbf5db;
    padding-right: 300px;
}

.hero-info p {
    margin-bottom: 20px;
    color: #fbf5db;
    padding-top: 50px;
}
.stories-message {
    background: #1f1619;
    border-radius: 30px;
    text-align: left;
    padding-left: 10px;
}

.poster-section {
    padding: 60px 0;
    background: #fbf5db;
    text-align: center;
}

.poster-section h2 {
    color: #de6536;
    margin-bottom: 30px;
    font-size: 48px;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    width: 80%;
    margin: auto;
}

.poster-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.poster-card img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.hero-btn {
    background: #1f1619;
    color: white;
    padding: 10px 18px;
    border-radius: 22px;
    font-size: 14px;
    text-decoration: none;
}


/* ABOUT HERO SECTION */
.about-hero {
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 120px;
}

.about-hero-text{
    max-width: 45%;
    text-align: left;
}

.about-hero-text h2{
    font-size: 48px;
}

.about-hero-text p{
    color: #1f1619;
    max-width: 900px;
}

.about-hero-image img{
    width: 300px;
    height: 300px;
    border-radius: 20px;
}

.team-section {
    text-align: center;
    background: #ffcfa3;
    border-radius: 30px;
}

.team-section h2 {
    font-size: 2.5rem;
    padding-top: 40px;
    color: #1f1619;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5px;
    padding-bottom: 50px;
    padding: 60px 80px;
}

/* TEAM CARD */
.team-card {
    background: #fbf5db;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 200;
    height: 200px;
    background: url('your-image-here.jpg') center/cover no-repeat;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.team-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #de6536;
    opacity: 0.25;
    border-radius: inherit;
}

/* NAME */
.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1f1619;
}

/* ROLE */
.team-card p {
    font-size: 1rem;
    opacity: 0.8;
    color: #1f1619;
}

.mv-section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.mv-box {
    background: #ffcfa3;
    padding: 35px;
    border-radius: 12px;
}

.mv-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1f1619;
}

.mv-box p {
    line-height: 1.7;
    font-size: 1.1rem;
    color: #1f1619;
}



.why-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    background: #ffcfa3;
    border-radius: 30px;
    padding: 60px 80px;
}

.why-img {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.why-img img{
    width: 500px;
}

.why-text h4 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1f1619;
}

.why-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    text-align: left;
    color: #1f1619;
}
.bts-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    background: #fbf5db;
    
}

.bts-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1f1619;
}

.bts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.bts-card {
    width: 100%;
    height: 230px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-content: center;
}

.bts-card p {
    position: relative;
    color: #de6536;
    font-size: 24px;
    font-weight: bold;
    z-index: 2;
}
/* Orange overlay like your Projects Page */
.bts-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #de6536;
    opacity: 0.25;
    transition: 0.3s;
}

.bts-card:hover::after {
    opacity: 0.45;
}

/* FOOTER */
footer{
	background: #1f1619;
	padding: 20px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	font-size: 18px;
	text-align: left;
	border-radius: 30px 30px 0 0;
}
.footer-logo{
	width: 200px;
}
.social-icons{
	display: flex;
	gap: 15px;
	margin-top: 10px;
}
.social-icons img{
	width: 40px;
	height: auto;
}

.footer-email {
	color: #ffffff;
	text-decoration: none;
	transition: 0.3s ease;
}

.footer-email:hover{
	color: #de6536;
}
.outro-text{
    width: 200px;
}

@media (max-width: 960px) {
    .navbar ul {
        gap: 20px;
    }
    .story-block {
        flex-direction: column;
        text-align: left;
        padding: 40px 20px;
    }
    .project-text {
        max-width: 70%;
        
    }
    .stories-desc {
        padding-right: 300px;
    }
    .project-thumb img {
        width: 400px;
    }
    .bts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* FOOTER 960 */
    footer {
        flex-wrap: wrap;
        font-size: 16px;
        padding: 15px;
    }

    .footer-logo,
    .outro-text {
        width: 180px;
        margin-bottom: 10px;
    }
}

@media (max-width: 430px) {
    .logo {
        width: 120px;
        height: auto;
    }
	.hero {
	    position: relative;
	    height: 0vh;
	    padding-top: 100px;
	    padding-bottom: 30px;
	    min-height: 100px;
	    height: 0;
	}
	.hamburger{
		display: flex;
	}
	.hero-text .hero-line1,
	.hero-text .hero-line2 {
	    font-size: 23px;
	}
	.hero-text .highlight {
	    font-size: 33px;
	}
	.hero-small {
	    font-size: 43px;
	}
	.hero-tagline {
	    position: absolute;
	    bottom: 20px;
	    right: 20px;
	    max-width: 30%;
	    text-align: right;
	}
	.hero-tagline-text {
	    margin: 0 0 10px 0;
	    font-size: 8px;
	    color: #1f1619;
	}
	.hero-shapes img {
	    width: 480px;
	}
	.hero-button {
	    width: 50px;
	    cursor: pointer;
	}
	.pedicab-abstract-shape img {
	    width: 100%;
	    height: auto;
	    display: block;
	}
	.intro-logo {
	    width: 150px;
	    height: auto;
	    display: block;
	    margin: 0 auto;
	}
	.campaign-left img {
	    width: 200px;
	    border-radius: 30px;
	}
	.stories {
	    padding: 60px 40px;
	    
	}
	.stories h2{
	    text-align: center;
	}
	.stories-desc {
        padding-right: 0px;
        text-align: center;
    }
    .stories-grid {
        flex-direction: column;
    }
    .stories-grid-videos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 5px;
        order: 2;
    }
    .image-wrapper {
        position: relative;
        overflow: hidden;
    }
    .story-item {
        padding-top: 50px;
        order: 1;
    }
    .image-wrapper img {
        width: 100%;
        height: 10px;
        display: block;
        border-radius: 30px;
        object-fit: cover;
    }
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(222, 101, 54, 0.5); /* semi-transparent #de6536 */
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        color: #fff;
        font-weight: bold;
        text-align: left;
        padding-left: 0px;
        border-radius: 30px;
    }
    .project-top {
        padding: 60px 20px;
    }
    .project-text h2{
        font-size: 38px;
    }
    .project-video-box {
        height: 100px;
    }
    .pasada-video {
        padding: 60px 20px;
    }
    .project-row {
        gap: 10px;
    }
    .project-info h4 {
        font-size: 18px;
    }
    .project-info p {
        font-size: 8px;
    }
    .project-thumb img {
        width: 200px;
    }
    .story-hero {
        padding: 60px 20px;
    }
    .hero-thumb img {
        width: 100px;
    }
    .hero-info h2 {
        font-size: 28px;
        margin-bottom: 10px;
        color: #fbf5db;
        padding-right: 50px;
    }
    .about-container {
        padding: 60px 20px;
    }
    .about-hero-image img{
        width: 100px;
        height: 100px;
    }
    .about-hero-text h2{
        font-size: 39px;
    }
    .why-container {
        display: block;
        gap: 0px;
        align-items: center;
        background: #ffcfa3;
        border-radius: 30px;
        padding: 60px 20px;
    }
    .why-img img{
        width: 100%;
        height: 150;
        border-radius: 12px;
    }
    .why-text p{
        text-align: center;
    }
    .bts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 5px;
    }
    
    /* FOOTER 430 */
    footer {
        flex-direction: column;
        padding: 10px;
        font-size: 14px;
        justify-content: center;
        text-align: center;
    }

    .footer-logo,
    .outro-text {
        width: 200px;
    }
    
    .social-icons {
        justify-content: center;
    }

    .social-icons img {
        width: 30px;
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        background: #de6536;
        box-sizing: border-box;
        height: 70px;
    }
    .hamburger {
        display: block;
        font-size: 34px;
        line-height: 0;
        cursor: pointer;
        z-index: 1100; 
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background: rgba(222, 101, 54, 0.4);
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        transition: height 0.3s ease;
        z-index: 900;
    }

    .nav-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .nav-links li a {
        text-decoration: none;
        color: #fbf5db;
        font-size: 20px;
        padding-left: 20px;
    }

    /* Panel open state */
    .nav-links.open {
        height: 260px;
    }
}

@media (max-width: 360px) {

    .navbar ul {
        font-size: 12px;
    }
    .nav-links{
		display: none;
	}
	.hamburger{
		display: flex;
	}

    .hero-info h2 {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .bts-grid {
        grid-template-columns: 1fr;
    }
    /* FOOTER */
    footer {
        font-size: 12px;
        padding: 8px;
        justify-content: center;
        text-align: center;
    }

    .footer-logo,
    .outro-text {
        width: 200px;
        justify-content: center;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .social-icons img {
        width: 25px;
    }
    .outro-text {
        width: 175px;
    }
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* COMMENT SECTION */
/* Label styling */
.comment-label {
    font-size: 16px;
    font-weight: 600;
    color: #5a4a3a;
    margin-bottom: 6px;
    display: block;
    font-family: "Inter", sans-serif;
}

/* Name + Comment boxes */
.comment-input,
.comment-textarea {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 2px solid #e0d5c0;
    background: #fffdf8;
    font-size: 16px;
    margin-bottom: 18px;
    font-family: "Inter", sans-serif;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.comment-input:focus,
.comment-textarea:focus {
    border-color: #b58963;
    background: #fffaf2;
    box-shadow: 0 0 0 4px rgba(181,137,99,0.25);
    outline: none;
}

/* Redesigned POST button */
.comment-btn {
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(135deg, #c49a6c, #ae8356);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.28s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.comment-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #b38458, #9c7249);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.comment-btn:active {
    transform: scale(0.98);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Form background */
.comment-form {
    background: #f7efdd;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #e5d9c4;
    margin-bottom: 25px;
}

.comment-text {
    margin-top: 8px;
    margin-bottom: 10px;
    color: #1f1619;
    line-height: 1.45;
    white-space: pre-wrap;
}

.comment-time {
    font-size: 13px;
    color: #de6536;
    font-style: italic;
}
