/* ========== Base Styles ========== */
body {
    font-family: 'Indie Flower', cursive, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* ========== Navbar ========== */
.transparent {
    background: rgba(0, 0, 0, 0.5);
}

.navbar-toggler-icon {
    border: 5px solid black;
    padding: 30px;
    background-color: #f15025;
}

.nav-link,
.navbar-brand {
    color: #f15025 !important;
    font-size: 1.5rem;
    font-style: italic;
}

.navbar a:hover {
    color: whitesmoke !important;
}

/* ========== Banner (Hero) ========== */
header {
    height: 100vh;
    background: url('Image/background/coffee.png') no-repeat center center fixed;
    background-size: cover;
}

.banner-center {
    height: 100vh;
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.banner-underline {
    width: 300px;
    border: 3px solid #6f4e37;
    margin: 20px auto;
}

.banner-center a {
    font-size: 1.25rem;
    width: 200px;
    margin-top: 10px;
    padding: 10px 20px;
    border: 3px solid whitesmoke;
    color: whitesmoke;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}

.banner-center a:hover,
.banner a:focus {
    color: #f15025;
    background-color: whitesmoke;
}

/* ========== Section Title ========== */
.title {
    margin-bottom: 20px;
    text-align: center;
}

.title-underline {
    width: 150px;
    border: 3px solid #6f4e37;
    margin: 10px auto;
}

/* ========== Skills Section ========== */
#skills {
    padding: 60px 20px;
    background-color: #f9f9f9;
    color: #2D3142;
}

#skills .fa {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #6f4e37;
}

#skills a.btn {
    background-color: #6f4e37;
    color: whitesmoke;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

#skills a.btn:hover {
    background-color: #CED0CE;
    color: #2D3142;
}

/* ========== About Section ========== */
#about {
    background-color: #2D3142;
    color: whitesmoke;
}

#about .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
}

#about .pic {
    height: 600px;
    background: url('Image/background/mockup-disposable-coffee-cup_53876-65837.jpg') no-repeat center center fixed;
    background-size: cover;
    border-bottom: 600px solid transparent;
    border-left: 100px solid #2D3142;
}

/* ========== Contact Section ========== */
#contact {
    padding: 60px 20px;
    background-color: whitesmoke;
}

#contact input.form-control {
    font-size: 18px;
    border-radius: 0;
    margin-bottom: 15px;
}

#contact button {
    background-color: #353531;
    font-size: 20px;
    color: #f15025;
    padding: 10px;
    transition: background-color 0.3s ease;
}

#contact button:hover {
    background-color: #CED0CE;
    color: #2D3142;
}

/* ========== Footer Section ========== */
#footer {
    padding: 60px 20px;
    background-color: #353531;
    
    color: whitesmoke;
    text-align: center;
}

#footer .footer-icons {
    font-size: 30px;
    padding: 20px 0;
}

#footer .footer-icons a {
    color: deepskyblue;
    margin: 0 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

#footer .footer-icons a:hover {
    color: #f15025;
}

#footer .copyright h5 {
    padding-top: 30px;
    color: #CED0CE;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .banner-center h1 {
        font-size: 2.5rem;
    }

    #about .pic {
        display: none;
    }
}
