@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Poppins:wght@400;600&display=swap');

/* General */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #111;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 15px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 75px;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    position: relative;
}

.navbar .nav-links li a::after {
    content: "";
    display: block;
    height: 2px;
    background: #c49b63;
    width: 0;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.navbar .nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background: url('/static/img/hero.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 10%;
    left: 5px;
    z-index: 4;
}

.hero-logo img {
    width: 400px;
    height: auto;
}

.hero-inner {
    display: inline-block;
}

.hero-text {
    position: absolute;
    bottom: 2%;
    right: 4%;
    z-index: 2;
    max-width: 800px;
    color: #ffffff;
}

.hero-large {
    font-family: 'Franklin Gothic Heavy';
    font-size: 5em;
    margin-bottom: 0.1em;
    text-align: center;
}

.hero-medium {
    font-family: 'Bahnschrift';
    font-size: 2.5em;
    margin-bottom: 2em;
    text-align: center;
}

.hero-small {
    font-family: 'Trebuchet MS';
    font-size: 1.5em;
    margin-bottom: 1em;
    padding-left: 150px;
    max-width: 600px;
    text-align: left;
}

.hero-small2 {
    font-family: 'Trebuchet MS';
    font-size: 1.5em;
    margin-bottom: 7em;
    padding-left: 200px;
    max-width: 600px;
    text-align: right;
}

.hero-small3 {
  font-family: 'Trebuchet MS';
  font-weight: 700;
  font-size: 2.3em;
  font-style: italic;
  text-align: right;
  color: #4c4c4c;
}

/* Intro */
.intro-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 5% 5%;
    column-gap: 5%;
    row-gap: 80px;
    box-sizing: border-box;
}

.intro-section.reverse {
    flex-direction: row-reverse;
}

.intro-text {
    flex: 1 1 45%;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 2em;
    margin-bottom: 1rem;
}

.intro-text p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.intro-text p::first-letter {
    margin-left: 0.5rem;
}

.intro-text .btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #ff6600;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.intro-text .btn:hover {
    background: #e65500;
}

.intro-image {
    flex: 1 1 45%;
    text-align: center;
    max-width: 600px;
}

.intro-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* === Banner Description */
.banner-description {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
}

.banner-description table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    word-wrap: break-word;
    white-space: normal;
    overflow: hidden;
}

.banner-description th,
.banner-description td {
    padding: 8px 10px;
    font-size: 0.9rem;
    word-break: break-word;
}

.banner-description th {
    background-color: #f8f8f8;
    font-weight: bold;
}

.banner-description tr:nth-child(even) {
    background-color: #fafafa;
}

.banner-description img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 10px auto;
}

.banner-description ul,
.banner-description ol {
    margin: 15px 0;
    padding-left: 20px;
    text-align: left;
}

/* Product Showcase */
.products-section {
    height: min(100vh, 100vw * 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-split {
    display: flex;
    width: 100%;
    height: min(80vh, 80vw * 0.7);
}

.product-segment {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    background-size: 300% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s ease;
}

.product-segment:hover {
    background-size: 330% 110%;
    z-index: 2;
}

.segment-1 { background-position: left center; }
.segment-2 { background-position: center center; }
.segment-3 { background-position: right center; }

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.product-segment:hover .product-overlay {
    opacity: 1;
}

.product-overlay h3 {
    font-family: 'Bahnschrift';
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.2;
}

.product-overlay p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.product-overlay .btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff6600;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
}

/* Usage Section */
.usage-section {
    padding: 80px 50px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #111;
}

.usage-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.usage-steps {
    flex: 1;
    min-width: 300px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    flex-wrap: nowrap;
}

.step:hover {
    transform: translateX(10px);
}

.step-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6600;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.step-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #222;
}

.step-text p {
    margin: 0;
    color: #555;
}

.usage-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.usage-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Usage Video */
.usage-video-section {
    position: relative;
    width: 90%;
    height: 80vh;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.video-wrapper {
    width: 100%;
    height: 100%;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* About */
.about-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 90%;
    width: 100%;
}

.about-text {
    flex: 1 1 400px;
    order: 2;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.about-image-slider {
    flex: 1 1 400px;
    order: 2;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* Contact Section */
.contact-section {
    padding: 80px 20px;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
}

.contact-details p {
    margin-bottom: 60px;
    font-weight: 500;
}

.contact-details ul {
    list-style: none;
    padding: 0;
}

.contact-details ul li {
    margin-bottom: 15px;
}

.contact-details ul li a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 500;
}

.contact-details ul li a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    background-color: #111;
    color: #ddd;
    font-family: 'Bahnschrift';
}

.site-footer p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    font-size: 2.2rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.1);
}

.social-icon.whatsapp:hover { color: #25D366; }
.social-icon.instagram:hover { color: #E1306C; }
.social-icon.x:hover { color: #999; }
.social-icon.facebook:hover { color: #1877F2; }

/* Responsive */