/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000000;
    color: #f4f4f4;
    line-height: 1.6;
}

/* Navigasi */
header {
    padding: 2rem 10%;
    border-bottom: 1px solid #111;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 1.2rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #f4f4f4;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
#hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.subtitle {
    color: #888;
    letter-spacing: 5px;
    font-size: 0.7rem;
    display: block;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-button {
    margin-top: 2rem;
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #f4f4f4;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.4s;
}

.cta-button:hover {
    background-color: #888;
    color: #fff;
}

/* Personal Story Section */
#personal-story {
    padding: 8rem 20%;
    background-color: #000;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.story-label {
    color: #555;
    letter-spacing: 3px;
    font-size: 0.7rem;
    display: block;
    margin-bottom: 1.5rem;
}

#personal-story h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.story-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.8rem;
    font-style: italic;
    font-family: 'Georgia', serif;
    line-height: 1.8;
}

/* Profile/Philosophy Section */
#profile {
    padding: 5rem 10%;
    background-color: #0a0a0a;
    text-align: center;
}

.single-focus-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.card.prominent {
    max-width: 600px;
    border: 1px solid #222;
    padding: 3rem;
    background-color: #050505;
    transition: 0.4s;
}

.card.prominent:hover {
    border-color: #f4f4f4;
}

/* Contact Section */
#contact {
    padding: 8rem 10%;
    text-align: center;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 2rem;
    color: #f4f4f4;
    text-decoration: underline;
    text-underline-offset: 8px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.whatsapp-link:hover {
    color: #888;
}

footer {
    padding: 3rem;
    text-align: center;
    font-size: 0.7rem;
    color: #333;
    letter-spacing: 2px;
}
/* Quotes Slider Styling */
#quotes-slider {
    padding: 6rem 10%;
    background-color: #050505;
    text-align: center;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.slider-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Sembunyikan scrollbar di Firefox */
    -ms-overflow-style: none; /* Sembunyikan scrollbar di IE/Edge */
}

.slider-wrapper::-webkit-scrollbar {
    display: none; /* Sembunyikan scrollbar di Chrome/Safari */
}

.quote-card {
    min-width: 100%; /* Menampilkan satu quote per tampilan */
    scroll-snap-align: start;
    padding: 3rem;
    border: 1px solid #1a1a1a;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.quote-card p {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #f4f4f4;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.quote-card span {
    color: #555;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
}
