@font-face {
  font-family: 'CoffeCake';
  src: url('../fonts/CoffeCake.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Unageo';
  src: url('../fonts/Unageo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Unageo';
  src: url('../fonts/Unageo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

:root {
    --bg-color: #ffd8bd;
    --primary-red: #a4484f;
    --dark-text: #4a4a4a;
    --light-pink: #fbe9e7;
    --stripe-bg: var(--bg-color);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Unageo', sans-serif;
    --font-script: 'CoffeCake', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--dark-text);
    overflow-x: hidden;
}

.striped-bg {
    background-image: var(--stripe-bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    text-align: center;
    position: relative;
    padding-bottom: 60px;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cpath d='M0 0 L 100 0 L 100 20 Q 50 50 0 20 Z' fill='%23a4484f'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 100px 70px;
    z-index: 10;
}

header .logo {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

header .logo span {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    display: block;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    padding: 8px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 700;
}

nav a:hover, nav a.active {
    background-color: var(--primary-red);
    color: white;
}

footer {
    background-color: var(--primary-red);
    color: var(--bg-color);
    padding: 30px 0;
    text-align: left;
}

footer p {
    color: var(--bg-color);
    opacity: 0.9;
    font-size: 0.9rem;
}

.social-icons {
    margin-bottom: 15px;
}

.social-icons a {
    color: var(--bg-color);
    text-decoration: none;
    margin-right: 25px;
    font-size: 28px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.8;
}

.section {
    padding: 80px 0;
    position: relative;
}

.wave-top {
    clip-path: polygon(0% 15%, 100% 0%, 100% 100%, 0% 100%);
}

.wave-bottom {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.wavy-section {
    background-color: var(--primary-red);
    color: white;
    padding: 120px 0;
    margin-top: -80px;
    clip-path: ellipse(100% 65% at 50% 50%);
}

.hero {
    height: 700px;
    position: relative;
    overflow: hidden;
    background-color: #333;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev-btn {
    left: 20px;
    border-radius: 5px 0 0 5px;
}

.next-btn {
    right: 20px;
    border-radius: 0 5px 5px 0;
}

.hero h1 {
    font-family: var(--font-script);
    font-size: 4rem;
    color: rgb(255, 226, 185);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    position: absolute;
    top: 60%;
    left: 70%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.about-intro {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 20px;
}

.about-intro .image-wrapper {
    flex: 1;
    text-align: center;
}

.about-intro img {
    width: 80%;
    max-width: 350px;
    clip-path: circle(50% at 50% 50%);
}

.about-intro .text-content {
    flex: 1;
}

.about-intro h2 {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-intro p {
    font-size: 1.5rem;
}

.categories {
    text-align: center;
}

.categories h2 {
    font-family: var(--font-script);
    font-size: 3rem;
    margin-bottom: 40px;
}

.category-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: var(--primary-red);
    color: var(--bg-color); 
    padding: 20px;
    width: 250px;
    height: 300px;
    border-radius: 25px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card .icon {
    width: 130px;
    height: 130px;
    margin-bottom: 15px;
}

.card h3 {
    font-family: var(--font-script);
    font-size: 2rem;
}

.story-header {
    height: 700px;
    position: relative;
    background-image: url('../images/profil-store.jpeg');
    background-size: cover;
    background-position: center;
}

.story-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-red);
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 50% 100%);
    opacity: 0.95;
}

.story-begin-text {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 2;
    color: var(--bg-color);
    font-family: var(--font-script);
    font-size: 4rem;
    line-height: 1.1;
    text-align: right;
    font-weight: normal;
}

.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: -50px;
    z-index: 2;
    position: relative;
}

.story-content p {
    flex: 1;
    line-height: 1.9;
    font-size: 1.25rem;
    color: var(--dark-text);
}

.story-content p strong {
    color: var(--primary-red);
    font-size: 1.5rem; 
    font-weight: 700;
}

.whisk-graphic {
    flex: 1;
    text-align: right;
}

.whisk-graphic i {
    font-size: 15rem;
    color: var(--primary-red);
    opacity: 0.8;
}

.story-gallery {
    padding: 80px 0;
}

.gallery-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-slider-container {
    width: 80%; 
    overflow: hidden;
}

.gallery-images {
    display: flex;
    gap: 20px; 
    transition: transform 0.5s ease-in-out;
}

.gallery-images img {
    width: 300px;
    height: 200px; 
    object-fit: cover;
    border-radius: 25px; 
    flex-shrink: 0; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: var(--primary-red);
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
}

.gallery-prev-btn {
    left: -10px;
}

.gallery-next-btn {
    right: -10px;
}

.gallery-text-content {
    text-align: center;
}

.gallery-text-content h2 {
    font-family: var(--font-script);
    color: var(--dark-text);
    font-size: 3rem;
    margin-bottom: 20px;
}

.gallery-text-content p {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.katalog-header {
    height: 700px;
    position: relative; 
    background-image: url('../images/lunchbox.jpg'); 
    background-size: cover;
    background-position: center;
}

.katalog-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-red);
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 50% 100%);
    opacity: 0.95;
}

.katalog-header h1 {
    position: absolute; 
    bottom: 40px;       
    right: 60px;        
    z-index: 2;        
    color: var(--bg-color); 
    font-family: var(--font-script);
    font-size: 4rem;
    line-height: 1.1;
    text-align: right;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.product-item:nth-child(even) {
    flex-direction: row-reverse;
}

.product-item .image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.product-item .text-content {
    flex: 1;
}

.product-item h2 {
    font-family: var(--font-script); 
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.product-item p {
    line-height: 1.8;
    text-align: justify;
}

.store-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.store-card {
    background-color: transparent; 
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    box-shadow: none; 
}

.store-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.store-image-container img {
    width: 100%;
    display: block; 
}

.store-image-container h2 {
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-family: var(--font-script);
    color: rgb(255, 226, 185);
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.store-info {
    background-color: var(--light-pink);
    padding: 40px 30px 30px 30px;
    text-align: center;
    margin-top: -20px;
    position: relative;
    border-radius: 0 0 25px 25px; 
}

.store-info::after {
    content: '';
    position: absolute;
    bottom: -20px; 
    right: 15%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--light-pink);
}

.store-info p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--primary-red);
}

.wavy-divider {
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 80'%3E%3Cpath d='M0 0 L 100 0 L 100 40 Q 50 80 0 40 Z' fill='%23a4484f'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 100px 80px;
}

.online-store-section {
    padding-top: 150px;
    padding-bottom: 150px;
}

.online-store-section h2 {
    font-family: var(--font-script);
    color: var(--dark-text);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 3px 3px 0px rgba(255,255,255,0.8);
}

.online-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.online-platforms img {
    height: 100px;
    width: auto;
    max-width: 200px;
    transition: opacity 0.3s ease;
}

.logo-whatsapp {
    height: 60px;
}

.logo-grabfood {
    height: 65px; 
}

.logo-shopeefood {
    height: 100px;
}

.online-platforms a:hover img {
    opacity: 0.8; 
}