* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* HERO */
.hero {
    background: 
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("images/wedding.png") center / cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background: #fff;
    color: #b30000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.hero .btn {
    display: inline-block;
    margin-bottom: 10px;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-top: 15px;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000;
}

/* SECTIONS */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #b30000;
}

/* ABOUT */
.about p {
    text-align: center;
    font-size: 17px;
}

/* GALLERY */
.images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.images img {
    width: 300px;
    border-radius: 6px;
}

/* CONTACT */
.contact {
    text-align: center;
}

.contact a {
    color: #b30000;
    text-decoration: none;
}

.social {
    margin-top: 20px;
}

.social a {
    margin: 0 10px;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #f2f2f2;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 15px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
    }
}

