* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #fff5f8;
    color: #6a1b4d;
    padding-top: 100px;
}
/*knop*/
.knop {
  display: inline-block;
  padding: 12px 20px;
  background-color: #f48fb1;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
   transition: all 1s ease;
}

.knop:hover {
  background-color: #6a1b4d;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* NAVIGATIE */
header {
    position: fixed;          
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;            

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: linear-gradient(90deg, #f8c8dc, #f48fb1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.logo {
    font-size: 26px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: 1s;
}

/* Elegant lijntje onder menu bij hover */
nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background-color: #6a1b4d;
    transition: 1s;
}

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

nav a:hover {
    color: #6a1b4d;
    transition: all 1s ease;
}

/* HERO */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(248,200,220,0.6), rgba(248,200,220,0.6)),
    url(https://images.unsplash.com/photo-1486427944299-d1955d23e34d) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background-color: #d81b60;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #ad1457;
}

/* ABOUT */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 80px 60px;
    flex-wrap: wrap;
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-image img {
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f8c8dc;
}

/* taaten*/
.page-title {
    text-align: center;
    padding: 120px 20px 60px 20px;
}

.page-title h1 {
    font-size: 40px;
    margin-bottom: 10px;
}
.taarten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: auto;
    padding: 20px 40px 80px 40px;
}

.taart-item {
    text-align: center;
}

.taart-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.taart-item img:hover {
    transform: scale(1.05);
    
}

.taart-item h3 {
    margin-top: 15px;
    font-size: 20px;
}

/* WORKSHOP STYLING */
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 40px 60px 100px 60px;
}

.workshop-item {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.workshop-item:hover {
    transform: translateY(-6px);
}

.workshop-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
}

.workshop-item h3 {
    margin-top: 15px;
    font-size: 24px;
    color: #c2185b;
}

.workshop-item p {
    color: #6a1b4d;
    font-size: 16px;
    margin: 8px 0;
}

.workshop-item .info {
    font-weight: 600;
    margin-top: 10px;
}

.workshop-item .phone a {
    color: #c2185b;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 980px) {
    .workshop-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}
/* CONTACT PAGINA */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 60px 100px 60px;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-card h2 {
    color: #c2185b;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #f1c1d8;
    border-radius: 12px;
    outline: none;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c2185b;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #c2185b;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 1.0s ease; /* veranderd overgang*/
    margin-top: 10px;
}

.contact-form button:hover {
    background: #a11a4a;
}

.contact-card p {
    color: #6a1b4d;
    line-height: 1.6;
    font-size: 16px;
}

.contact-card a {
    color: #c2185b;
    text-decoration: none;
}
.contact-img{
    width: 250px;
    height: auto;
     display: block;
    margin: 20px auto 0 auto;
}

@media (max-width: 980px) {
    .contact-section {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}
