:root {
    --primary-dark: #2B3A4B;
    --primary-coral: #E18C8C;
    --primary-light: #D9E6F7;
    --secondary-brown: #8C7373;
    --secondary-blue: #739AA8;
    --secondary-pink: #F2D9D9;
    --accent-cream: #FFF8F0;
    --accent-beige: #F2E8D5;
    --accent-light: #F2F2F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-dark);
}

h1, h2, h3, h4 {
    font-family: 'Kanit', sans-serif;
}

/* Search Bar Styles */
.search-container {
    display: flex;
    align-items: center;
    margin-left: 2rem;
    margin-right: auto;
}

.search-bar {
    padding: 8px 12px;
    border: 1px solid var(--secondary-brown);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    font-size: 0.9rem;
    width: 200px;
    transition: all 0.3s ease;
}

.search-bar:focus {
    outline: none;
    border-color: var(--primary-coral);
    box-shadow: 0 0 5px rgba(225, 140, 140, 0.3);
    width: 220px;
}

/* Navbar Layout Adjustment */
nav {
    display: flex;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    margin-right: 1rem;
}

.nav-links {
    margin-left: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .search-container {
        margin-left: 1rem;
    }
    
    .search-bar {
        width: 150px;
    }
}

/* Navbar Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-coral);
}

/* Adjust main content padding to account for fixed navbar */
body {
    padding-top: 50px; /* Sesuaikan dengan tinggi navbar */
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.logo img {
    max-width: 60px;  /* Mengatur lebar maksimum logo */
    height: auto;     /* Menjaga aspek rasio gambar */
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-coral);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-brown);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .search-container {
        margin-right: 1rem;
    }
    
    .search-bar {
        width: 150px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 5% 3rem;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--secondary-pink) 100%);
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.hero-text {
    flex: 1;
    min-width: 280px;
    padding-top: 2rem;
}

.hero-text h1 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-align: left;
    letter-spacing: 0.02em;
}

.hero-text h2 {
    font-size: 1.4rem;
    color: var(--primary-coral);
    margin: 1rem 0;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.description {
    font-size: 0.95rem;
    margin: 1.2rem 0;
    line-height: 1.7;
    color: var(--primary-dark);
    max-width: 450px;
    text-align: left;
}

/* Styling untuk kata-kata dengan background */
.tagline {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.3rem;
    margin: 0.8rem 0;
    font-size: 1.4rem;
    color: var(--primary-coral);
    white-space: nowrap;
}

.highlight-tech,
.highlight-beauty,
.highlight-digital {
    background: #2B3A4B;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
    font-size: 1.4rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tagline-separator {
    margin: 0 0.2rem;
    color: var(--primary-coral);
}

.contact-btn {
    display: inline-block;
    background: var(--primary-dark);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin: 1rem 0 0.5rem;
    transition: all 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 50% 50% 0 50%;
    position: relative;
    z-index: 2;
    background: var(--primary-dark);
    padding: 1rem;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-coral);
    opacity: 0.1;
    border-radius: 50% 50% 0 50%;
    transform: translate(15px, 15px);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225,140,140,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217,230,247,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .hero-image img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 5% 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .description {
        margin: 1.5rem auto;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 300px;
    }
}

/* About Page Styles */
.about-page {
  padding: 4rem 5%;
  background-color: #d9e6f7; /* Sesuaikan dengan variabel --primary-light */
}

.about-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-header h2 {
  font-size: 2.2rem;
  color: #2B3A4B; /* Sesuaikan dengan --primary-dark */
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.about-header .highlight {
  color: #E18C8C; /* Sesuaikan dengan --primary-coral */
  font-weight: 700;
}


.about-header .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(225, 140, 140, 0.2);
    z-index: -1;
}

/* About Main Content */
.about-main {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-coral);
    border-radius: 30px;
    z-index: 1;
}

.about-image-container img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-image-container:hover img {
    transform: translateY(-10px);
}

.about-text {
    background-color: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
}

.about-text .greeting {
    display: inline-block;
    background-color: var(--primary-coral);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-dark);
    opacity: 0.9;
}

/* Education Section */
.education {
    margin-top: 4rem;
    padding: 4rem;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.education h2 {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.education-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.education-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--accent-cream);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.education-item:hover {
    transform: translateY(-10px);
}

.education-bullet {
    font-size: 2rem;
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.education-item h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.education-item p {
    color: var(--primary-dark);
    opacity: 0.8;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-header h2 {
        font-size: 3rem;
    }
    
    .about-main {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .education-items {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-header h2 {
        font-size: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 4rem 5%;
    }

    .about-text {
        padding: 2rem;
    }

    .education {
        padding: 2rem;
    }

    .about-header h2 {
        font-size: 2rem;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 5%;
    background-color: var(--accent-cream);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.portfolio-header h2 span {
    color: var(--primary-coral);
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    background-color: var(--secondary-blue);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.portfolio-item-image {
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item-image img {
    max-width: 100%;
    height: auto;
}

.portfolio-item-content {
    flex: 1;
}

.portfolio-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.portfolio-tag {
    background-color: var(--primary-coral);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.portfolio-item-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.portfolio-item-content p {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.see-more-btn {
    background-color: var(--primary-dark);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background-color: var(--primary-coral);
}

/* Blog Section */
.blog-section 
{
  padding: 4rem 5%;
  background: #d9e6f7;
  min-height: 100vh;
}
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #e18c8c;
  display: inline;
}
.blog-header span {
  color: #2b3a4b;
  font-weight: 700;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.blog-card {
  background: #8c7373;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15);
  cursor: pointer;
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #fff;
}
.blog-card-content {
  padding: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.blog-tags {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.blog-tag {
  background: #e18c8c;
  color: #fff;
  border-radius: 16px;
  font-size: 0.9rem;
  padding: 0.2rem 1rem;
  font-weight: 500;
}
.blog-date {
  background: #f2d9d9;
  color: #2b3a4b;
  border-radius: 16px;
  font-size: 0.9rem;
  padding: 0.2rem 1rem;
  font-weight: 500;
}
.blog-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
}
.blog-card-content p {
  font-size: 0.97rem;
  color: #f2f2f2;
  line-height: 1.6;
}

/* Blog Detail Section */
.blog-detail-section {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 16px;
  font-family: 'Poppins', Arial, sans-serif;
  color: #2b3a4b;
  line-height: 1.7;
}
.blog-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #e18c8c;
}
.blog-meta {
  font-size: 0.9rem;
  color: #8c7373;
  margin-bottom: 24px;
}
.blog-feature-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  margin-bottom: 32px;
}
.blog-content h2 {
  color: #e18c8c;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
}
.blog-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}
.blog-content ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}
.blog-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #4a4a4a;
}

/* Responsive */
@media (max-width: 700px) {
  .blog-detail-section {
    padding: 0 12px;
    margin: 40px auto 60px;
  }
  .blog-title {
    font-size: 1.8rem;
  }
  .blog-list {
    max-width: 100%;
    padding: 0 12px;
  }
  .blog-card img {
    height: 140px;
  }
}

/* Footer */
.footer-bottom {
    color: #E18C8C;
    font-size: 0.95rem;
}
.footer-bottom a {
    color: #E18C8C;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-list {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .blog-card img {
        height: 200px;
    }
}



/* Specific background colors for each section */

.blog-section,
.about-section,
.contact-section {
    background-color: var(--primary-light);
}

.portfolio-section {
    background-color: var(--accent-cream);
}

.blog-section {
    background: var(--primary-light);
}
.blog-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.blog-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #E18C8C;
    display: inline;
}
.blog-header span {
    color: #2B3A4B;
    font-weight: 700;
}
.blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.blog-card {
    background: #8C7373;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(44,62,80,0.15);
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card-content {
    padding: 1.8rem;
    color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.blog-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.blog-tag {
    background: #E18C8C;
    color: #fff;
    border-radius: 16px;
    font-size: 0.9rem;
    padding: 0.2rem 1rem;
    font-weight: 500;
}
.blog-date {
    background: #F2D9D9;
    color: #2B3A4B;
    border-radius: 16px;
    font-size: 0.9rem;
    padding: 0.2rem 1rem;
    font-weight: 500;
}
.blog-card-content h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    font-weight: 700;
}
.blog-card-content p {
    font-size: 0.95rem;
    color: #f2f2f2;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
.footer-bottom {
    color: #E18C8C;
    font-size: 0.95rem;
}
.footer-bottom a {
    color: #E18C8C;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-list {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .blog-card img {
        height: 200px;
    }
}

/* Konsistensi Section untuk Semua Halaman */
.portfolio-section,
.blog-section,
.moments-section,
.about-section,
.contact-section {
    padding: 4rem 5%;
    min-height: auto;
}

/* Konsistensi Header untuk Semua Halaman */
.portfolio-header,
.blog-header,
.moments-header,
.about-header,
.contact-header {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 3rem;
}

.portfolio-header h2,
.blog-header h2,
.moments-header h2,
.about-header h2,
.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 3rem;
}

.portfolio-header h2 span,
.blog-header h2 span,
.moments-header h2 span,
.about-header h2 span,
.contact-header h2 span {
    color: var(--primary-coral);
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-section,
    .blog-section,
    .moments-section,
    .about-section,
    .contact-section {
        padding: 2rem 4%;
    }
}
@media (max-width: 768px) {
    .portfolio-section,
    .blog-section,
    .moments-section,
    .about-section,
    .contact-section {
        padding: 1.5rem 3%;
    }
    .portfolio-header,
    .blog-header,
    .moments-header,
    .about-header,
    .contact-header {
        padding-top: 40px;
        margin-bottom: 2rem;
    }
}

.moments-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 3rem;
    padding: 2rem;
}

.moment-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(44,62,80,0.06);
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    transition: box-shadow 0.2s;
    margin-bottom: 2rem;
}

.moment-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    min-height: 220px;
    max-height: 240px;
    border-radius: 14px;
    transition: transform 0.2s;
}

.moment-card:hover img {
    transform: scale(1.025);
}

.moment-label,
.blog-card-content h3,
.contact-form label,
.portfolio-item-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.moment-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2b3a4b;
    color: #fff;
    padding: 10px 20px;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    z-index: 2;
    letter-spacing: 0.01em;
    max-width: 90%;
    white-space: pre-line;
}

@media (max-width: 900px) {
    .contact-container {
        padding: 25px;
        margin: 2rem;
        gap: 25px;
    }
    
    .moments-gallery {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.5rem;
    }
}

/* Contact Page Specific Styles */
body {
    background: #dbe8f4;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    color: #222;
}

main {
    margin-bottom: 0;
}

/* Contact Page Specific Styles */

.contact-title {
    text-align: center;
    margin-top: 38px;
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 400;
}

.contact-subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 38px;
    letter-spacing: 0.01em;
}

.contact-subtitle .highlight {
    color: var(--primary-coral);
}

.contact-container {
    background: var(--accent-beige);
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background: var(--secondary-brown);
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* Contact Page Specific Styles */
.contact-info {
    padding: 25px;
    border-radius: 16px;
    color: var(--primary-dark);
}

.contact-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.contact-info .address {
    background: var(--secondary-brown);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-info .contact-details {
    background: var(--secondary-brown);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-info .stay-connected {
    background: var(--primary-coral);
    padding: 15px;
    border-radius: 12px;
}

.contact-info .address h3,
.contact-info .contact-details h3,
.contact-info .stay-connected h3 {
    color: white;
    margin-bottom: 10px;
}

.contact-info .address p,
.contact-info .contact-details p {
    color: white;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.send-btn {
    background: #E18C8C;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    width: fit-content;
}

.send-btn:hover {
    background: var(--primary-coral);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 25px;
        margin: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer Styles */
footer {
    background-color: var(--primary-dark);
    padding: 2rem 5% 1rem;
    color: white;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-logo h3 span {
    color: var(--primary-coral);
    font-weight: 700;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    font-size: 0.9rem;
}

.navigation h4,
.contact-info h4,
.newsletter h4 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 600;
}

.navigation ul {
    list-style: none;
    padding: 0;
}

.navigation ul li {
    margin-bottom: 0.6rem;
}

.navigation ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
}

.email-input {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.7rem;
}

.email-input input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #C97972;
    color: #fff;
}

.email-input input::placeholder {
    color: #fbeee6;
    opacity: 1;
}

.email-input button {
    background: #D9D9D9;
    color: #1e1c1c;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.email-input button:hover {
    background: #c76d6d;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-sections {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .navigation h4,
    .contact-info h4,
    .newsletter h4 {
        font-size: 0.85rem;
    }

    .navigation ul li a,
    .contact-info p {
        font-size: 0.7rem;
    }
}

.moments-section {
    background-color: var(--accent-cream); /* Sama seperti portfolio-section */
}

.moments-gallery {
    background-color: var(--accent-cream); /* Opsional, jika ingin galeri juga sama */
}