:root {
  --primary: #b6895b;
  --bg: #ffffff;

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
  }

  body {
    font-family: "Roboto", sans-serif;
    background-color: var(--bg);
    color: #000000;
  }

  /* Navbar */

  .main-header {
    background-color: #B0733E; 
    padding: 20px 50px;
    display: flex;
    flex-wrap: wrap ;
    flex-direction: column;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px; 
}

.coffee-text, 
.bakery-text,
.ampersand-text {
    color: #f7e6d7; 
    font-size: 5rem;
    line-height: 1;
}

.coffee-text {
    font-weight: 400;
}

.ampersand-text {
    font-weight: 400; 
    margin: 0 10px; 
}

.bakery-text {
    font-weight: 700;
    color:#121212
}

.sip-logo {
    width: 100px; 
    height: 100px;
    margin-left: 15px;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 120px;
}

.main-nav a {
    text-decoration: none;
    color: #f7e6d7;
    font-size: 2.5rem;
    font-weight: 400; 
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav ul li:nth-child(4) a {
    font-weight: 700;
}

.menu-toggle {
  display: none;
}

/* navbar finish */

  #Hamburger-menu {
    display: none;
  }

  /* Media Queries */

  /* body Section  */

  .Hero {
    min-height: 150vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  /* Laptop */

  @media (max-width: 1366px) {
    html {
      font-size: 75%;
    }
  }

  /* Tablet */

  @media (max-width: 768px) {
    html {
      font-size: 62.5%;
    }

    #Hamburger-menu {
      display: inline-block;
    }

    .Navbar .navbar-nav {
      position: absolute;
      top: 100%;
      right: -100%;
      background-color: #d7c8bc;
      width: 25rem;
      height: 80vh;
    }

    .logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px; 
  } 

    .coffee-text, 
    .bakery-text,
    .ampersand-text {
    color: #f7e6d7; 
    font-size: 5rem;
    line-height: 1;
}

    .coffee-text {
    font-weight: 200;
}

    .ampersand-text {
    font-weight: 200; 
    margin: 0 10px; 
}

    .bakery-text {
    font-weight: 350;
    color:#121212
  }

  .logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px; 
}

    .image-frame-container {
    width:266px;
    height: 200px;
    border: 5px; 
    background-color: #B0733E;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    padding:5px;
    box-sizing:border-box;
    overflow: hidden;
} 

.image-frame {
    width:90%;
    height:90%;
    border-radius: 10%;
    border: 10px solid #d4a373;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .Navbar .navbar-nav.active {
      right: 0;
    }

    .Navbar .navbar-nav a {
      color: var(--bg);
      display: block;
      margin: 1.5rem;
      padding: 0.5rem;
      font-size: 2rem;
    }

    .Navbar .navbar-nav a::after {
      transform-origin: 0 0;
    }

    .Navbar .navbar-nav a:hover::after {
      transform: scaleX(0.2);
    }
  }

  /* Mobile */

  @media (max-width: 450%) {
    html {
      font-size: 55%;
    }
  }
}

/* SECTION */

/* Container utama untuk 2 kolom */
.main-content-container {
    display: flex;
    justify-content: center;
    padding: 50px 0; 
    
    /* Mengatur kotak putih pembungkus yang mengelilingi kedua kolom */
    background-color: #fff;
    border: 1px solid #ccc; 
    width: 80%; 
    margin: 30px auto; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}
.coffee-text2{
  color:#B0733E;
}
.bakery-text2{
  color: #000000;
}

.column {
    padding: 20px;
}

/* --- Gaya Kolom Kiri (Gambar) --- */
.left-column {
    flex: 1; /* Ambil proporsi 1 bagian */
    max-width: 50%; /* Batasi lebar kolom kiri (opsional) */
    padding-left: 50px; /* Tambahan padding agar judul tidak menempel tepi */
}

/* Judul tempat di atas gambar */
.place-title {
    font-size: 3.5rem;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

/* Logo SIP Kecil di samping judul tempat */
.sip-logo-small {
    width: 40px; 
    height: 40px;
    margin-left: 10px;
}

/* Area Gambar dengan Padding dan Border Rounded */
.image-frame-container {
    width:532px;
    height: 400px;
    border: 5px; 
    background-color: #B0733E;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    padding:5px;
    box-sizing:border-box;
    overflow: hidden;
} 

.image-frame {
    width:90%;
    height:90%;
    border-radius: 10%;
    border: 10px solid #d4a373;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- Gaya Kolom Kanan (Informasi Kontak) --- */
.right-column {
    flex: 1.2; /* Ambil proporsi sedikit lebih besar */
    padding-right: 50px; /* Tambahan padding agar konten tidak menempel tepi */
}

.contact-header {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start; /* Sejajarkan ikon dengan baris pertama teks */
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.black-p{
  color:#000000
}

.separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

/* --- Penempatan dan Ukuran Ikon (Placeholder) --- */

.icon-placeholder {
    width: 74px;
    height: 74px;
    min-width: 74px;
    margin-right: 15px;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: #666;
}

/* Penyesuaian khusus untuk jam operasional */
.operational-hours .icon-placeholder {
    align-self: flex-start; /* Ikon jam di atas */
}

.operational-hours div p {
    line-height: 1.2;
}

.hours-title {
    font-weight: 700;
}

/* FOOTER */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap");

body {
  margin: 0;
  font-family: "Montserrat", "roboto";
}

.footer-container {
  background-color: #666666;
  color: #fff;
  padding: 60px 80px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5em;
  font-weight: normal;
  margin: 0;
  color: #fff;
}

.footer-bakery {
  color:#000000
}

.header-line {
  width: 100%;
  border: 0;
  height: 10px;
  background-color: #ffffff;
  margin: 20px 0 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about-us-section {
  width: 60%;
  margin-right: 50px;
}

.contact-section {
  width: 30%;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5em;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 20px;
}

.about-us-section p {
  font-size: 1em;
  line-height: 1.6;
  max-width: 600px;
  text-align: justify;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item .icon {
  font-size: 2em;
  margin-right: 20px;
}

.contact-item p {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
}

.halal-logo img {
  height: 150px;
  opacity: 0.8;
}

.social-media-section {
  align-items: flex-end;
  margin-top:20px;
}

.social-media-title {
  font-family: "roboto", serif;
  font-size: 2.5em;
  font-weight: normal;
  margin: 0 0 10px 0;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons img {
  height: 50px;
  margin-right: 20px;
  opacity: 0.9;
}

.bottom-line {
  width: 100%;
  border: 0;
  height: 1px;
  background-color: #fff;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .footer-container {
    padding: 40px 40px 20px 40px;
  }

  .about-us-section,
  .contact-section {
    width: 100%;
    margin-right: 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .about-us-section p {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer-header h1 {
    font-size: 2.5em;
  }
  .section-title {
    font-size: 2em;
  }
  .social-media-title {
    font-size: 2em;
    margin-right: 15px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .halal-logo {
    margin-bottom: 20px;
  }
  .halal-logo img {
    height: 120px;

  }
  .social-icons img {
    height: 40px;
  }
}