body {
    display: flex;
    flex-direction: column;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 0 40px;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}
.navbar .logo {
    height: 30px;
    width: auto;
    display: block;
    padding: 10px;
}
.navbar .nav-links {
    display: flex;
    gap: 20px;
}
.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.navbar .nav-links a:hover {
    color: #ff2ed4;
}
.content {
    margin-top: 50px;
    flex: 1;
    min-height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.white-container {
    background-color: rgba(255, 255, 255, 0.6);
    max-width: 900px;
    width: 100%;
    margin: 50px auto;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    opacity: 0;
}
body.loaded .white-container {
    animation: fadeInText 0.8s forwards;
}
.white-container2 {
    background-color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    width: 100%;
    margin: 50px auto;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    opacity: 0;
}
body.loaded .white-container2 {
    animation: fadeInText 0.8s forwards;
}
.about-header-wrapper,
.section-header-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto 20px;
}
.about-header,
.section-header {
    position: relative;
    display: inline-block;
    max-width: 600px;
    width: 100%;
    height: 50px;
}
.about-header .header-text,
.section-header .header-text {
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 2;
    opacity: 0;
}
body.loaded .about-header .header-text,
body.loaded .section-header .header-text {
    animation: slideInText 1.2s forwards;
    animation-delay: 0.3s;
}
.about-header .header-text {
    font-size: 70px;
    margin: 0;
}

.section-header .header-text {
    font-size: 50px;
}
.who-we-are {
    font-weight: bold;
    font-size: inherit;
    margin: 0 0 8px 0;
    display: inline;
}
.about-header .header-bar,
.section-header .header-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 140%;
    height: 16px;
    background: linear-gradient(90deg, #ff9374, #ff2ed4);
    background-size: 200% 100%;
    opacity: 0;
    transform: translateX(-50%) translateX(100%);
}
body.loaded .about-header .header-bar,
body.loaded .section-header .header-bar {
    animation:
        slideInBar 1.2s forwards 0.3s,
        pulseGradient 10s linear infinite 5s;
}
@keyframes pulseGradient {
    0%   { background-position: 0% 0%; }
    15%  { background-position: 100% 0%; }
    30%  { background-position: 0% 0%; }
    100% { background-position: 0% 0%; }
}
@keyframes slideInText {
    0%   { transform: translateX(-800px); opacity: 0; }
    100% { transform: translateX(-50%);   opacity: 1; }
}
@keyframes slideInBar {
    0%   { transform: translateX(-50%) translateX(100%); opacity: 0; }
    100% { transform: translateX(-50%) translateX(0);    opacity: 1; }
}
@keyframes fadeInText {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.about-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: justify;
    line-height: 1.6;
    opacity: 0;
}
body.loaded .about-box {
    animation: fadeInText 3s forwards;
    animation-delay: 0.5s;
}
.index-box1 {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: justify;
    line-height: 1.6;
    font-size: 16px;
    opacity: 0;
}
body.loaded .index-box1 {
    animation: fadeInText 3s forwards;
    animation-delay: 0.5s;
}
.bottom-bar {
    background-color: #000;
    text-align: center;
    color: white;
    padding: 10px 20px;
}
.bottom-bar .bottom-logo {
    height: 20px;
    width: auto;
    vertical-align: middle;
    margin-right: 5px;
}
.instagram-icon {
    height: 25px;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
    transition: all 0.3s ease;
}
.instagram-link:hover .instagram-icon {
    content: url('ig-pink.png');
}
.logo-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 8000px;
    height: 8000px;
    background-color: #dddddd;
    z-index: -1;
    transform: rotate(-35deg);
    transform-origin: left;
}
.logo-row {
    position: absolute;
    left: 0;
    right: 0;
    height: 85px;
    background-image: url('logotile.svg');
    background-repeat: repeat-x;
    background-size: 500px 85px;
    opacity: 0.4;
    will-change: transform;
}
@keyframes moveRight {
    0%   { transform: translateX(0); }
    100% { transform: translateX(500px); }
}
@keyframes moveLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-500px); }
}
body.index-page {
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
}
.image-container {
    width: 90%;
    max-width: 1100px;
    height: 450px;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.index-hero-image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -20px;
}
.hero-image-wrap {
    position: relative;
    display: inline-block;
}
.hero-image-wrap img {
    display: block;
    width: 850px;
    height: auto;
    clip-path: inset(0 100% 0 0);
}
body.loaded .hero-image-wrap img {
    animation: paintReveal 0.8s ease-in-out forwards;
    animation-delay: 0.2s;
}
@keyframes paintReveal {
    0%   { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0% 0 0); }
}
.hero-image-wrap .hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    text-align: center;
    color: #000;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 59px;
    line-height: 1.25;
    white-space: nowrap;
    opacity: 0;
    transform: translate(calc(-50% + 100vw), -50%);
}
body.loaded .hero-image-wrap .hero-overlay-text {
    animation: slideInHeroText 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
}
.hero-image-wrap .hero-overlay-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    display: block;
    width: 55%;
    max-width: 500px;
    height: 25vw;
    max-height: 220px;
    object-fit: contain;
    opacity: 0;
    clip-path: none;
    transform: translate(calc(-50% + 100vw), -50%);
}
body.loaded .hero-image-wrap .hero-overlay-svg {
    animation: slideInHeroText 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
}
@keyframes slideInHeroText {
    0%   { transform: translate(calc(-50% + 100vw), -50%); opacity: 0; }
    100% { transform: translate(-50%, -50%); opacity: 1; }
}
.contact-container {
    max-width: 800px;
    margin: 20px auto 0;
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 35;
}
.contact-container input,
.contact-container textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
.contact-container button {
    width: 100%;
    padding: 12px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
}
.contact-container button:hover {
    background: linear-gradient(90deg, #ff9374, #ff9374, #ff2ed4, #ff2ed4);
}
.gradient-section {
    width: 100%;
    position: relative;
    padding: 80px 0;
    background: linear-gradient(90deg, #ff9374, #ff2ed4);
}
.animated-section {
    width: 100%;
    position: relative;
    padding: 80px 0;
}
.submit-btn-wrapper {
    max-width: 800px;
    margin: 20px auto 0;
    opacity: 0;
}
body.loaded .submit-btn-wrapper {
    animation: fadeInText 1s forwards;
    animation-delay: 0.4s;
}
.submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.submit-btn:hover {
    background: linear-gradient(90deg, #ff2ed4);
}
.bottom-bar.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #000;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 2999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-menu.open {
    max-height: 300px;
}
.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 14px;
    letter-spacing: 1px;
    border-top: 1px solid #222;
    display: block;
    transition: color 0.2s ease;
}
.mobile-menu a:hover {
    color: #ff2ed4;
}
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: flex;
    }
    .navbar {
        padding: 0 20px;
    }
    .about-header .header-text {
        font-size: 48px;
        white-space: normal;
        width: 90%;
        text-align: center;
        line-height: 1.15;
    }
    .section-header .header-text {
        font-size: 36px;
        white-space: normal;
        width: 90%;
        text-align: center;
        line-height: 1.15;
    }
    .hero-image-wrap .hero-overlay-text {
        font-size: 48px;
        white-space: normal;
        width: 85vw;
        max-width: 500px;
        text-align: center;
        line-height: 1.2;
        top: 50px;
    }
    .hero-image-wrap .hero-overlay-svg {
        width: 75vw;
        max-width: 400px;
        height: 35vw;
        max-height: 180px;
        top: 50px;
    }
    .hero-image-section {
        margin-top: 150px;
    }
    .white-container,
    .white-container2 {
        margin: 30px auto;
        padding: 30px 24px;
    }
    .content {
        padding: 10px 16px;
    }
    .about-box {
        font-size: 15px;
        padding: 0 8px;
    }
    .image-container {
        height: 300px;
    }
    .gradient-section,
    .animated-section {
        padding: 50px 0;
    }
}
@media (max-width: 480px) {
    .about-header .header-text {
        font-size: 34px;
        white-space: normal;
        width: 92%;
        text-align: center;
        line-height: 1.15;
    }
    .section-header .header-text {
        font-size: 26px;
        white-space: normal;
        width: 92%;
        text-align: center;
        line-height: 1.15;
    }
    .about-header,
    .section-header {
        height: 65px;
    }
    .about-header .header-text,
    .section-header .header-text {
        bottom: -8px;
    }
    .white-container,
    .white-container2 {
        margin: 16px auto;
        padding: 24px 16px;
    }
    .content {
        padding: 8px 12px;
        margin-top: 50px;
    }
    .about-box {
        font-size: 14px;
        padding: 0 4px;
    }
    .image-container {
        height: 220px;
    }
    .hero-image-wrap .hero-overlay-text {
        font-size: 40px;
        white-space: normal;
        width: 90vw;
        max-width: 320px;
        text-align: center;
        line-height: 1.25;
        top: 50px;
    }
    .hero-image-wrap .hero-overlay-svg {
        width: 85vw;
        max-width: 280px;
        height: 40vw;
        max-height: 130px;
        top: 50px;
    }
    .hero-image-section {
        margin-top: 100px;
    }
    .contact-container {
        padding: 20px 16px;
    }
    .gradient-section,
    .animated-section {
        padding: 36px 0;
    }
    .about-header .header-bar,
    .section-header .header-bar {
        height: 64px;
    }
    .bottom-bar {
        font-size: 13px;
        padding: 10px 12px;
    }
}
