:root {
    --white: #ffffff;
    --off-white: #f9f7f4;
    --light-beige: #faf6f3;
    --soft-cream: #fdfbfa;
    --light-grey: #eae7e3;

    --warm-brown: #8c6a4e;
    --medium-brown: #a58a76;
    --light-brown: #cbb7a2;

    --text-primary: #3a3a3a;
    --text-secondary: #6b6b6b;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-primary);
    background-color: var(--off-white);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

header {
    position: relative;
    width: 100%;
    overflow: hidden;
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255,255,255,0.642);
}

nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    border-bottom: 2px solid var(--warm-brown);
}

nav ul li.head a {
    font-size: 24px;
    color: black;
    font-weight: 700;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1200px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-text button {
    background-color: var(--soft-cream);
    border: 1px solid var(--warm-brown);
    padding: 12px 38px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text button a {
    text-decoration: none;
    color: var(--warm-brown);

}

.hero-text button a:hover {
    color: var(--off-white);

}

.hero-text button:hover {
    background-color: var(--light-brown);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.half-circle {
    width: 115%;
    height: 3.5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    nav ul li {
        margin: 0 10px;
    }

    nav ul li.head a {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    nav ul {
        justify-content: space-around;
    }

    nav ul li {
        margin: 5px 8px;
    }

    nav ul li a {
        font-size: 12px;
    }

    nav ul li.head {
        order: -1;
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    nav {
        padding: 10px 0;
    }

    nav ul li {
        margin: 5px;
    }
}

.container1 {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flower {
    width: 17%;
    height: auto;
}

.straightstick {
    width: 2px;
    height: 200px;
    opacity: 0.5;
}

@media (max-width: 768px) {

    .flower,
    .straightstick {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .flower,
    .straightstick {
        max-width: 80%;
    }
}

.container2 {
    background-color: white;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: var(--medium-brown);
}

.container2 p {
    font-size: 24px;
    margin: 0;
    letter-spacing: 1px;

}

.container2 strong {
    background-color: white;
    font-weight: bold;
    color: var(--warm-brown);
}

@media (max-width: 768px) {
    .container2 p {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container2 p {
        font-size: 18px;
    }
}

.container3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

.text-section {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    color: var(--warm-brown);
}

.left,
.right {
    flex: 1;
    font-size: 18px;
    text-align: justify;
}

.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: var(--off-white);
}

.image-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
}

.wedding-image-left {
    width: 30%;
    height: auto;
    border: 10px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
}

.wedding-image-right {
    width: 65%;
    height: auto;
    border: 10px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 7rem;
}

@media (max-width: 768px) {
    .image-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .wedding-image-left,
    .wedding-image-right {
        width: 100%;
        margin-top: 0;
    }

    .text-section {
        flex-direction: column;
        gap: 20px;
    }

}

@media (max-width: 480px) {

    .left,
    .right {
        font-size: 16px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: var(--warm-brown);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #b89b7b;
}

.services-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.service-card {
    width: 300px;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--medium-brown);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    transform: translateY(-10px);

}

.service-card h3 {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: var(--warm-brown);
    background-color: white;
    border: 1px solid var(--medium-brown);
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.media-card img {
    width: 45%;
    height: auto;
    margin-top: 10px;
}

.media-card {
    text-align: center;
    color: var(--medium-brown);
    background-color: #F1ECE3;

}

.media-card h4 {
    color: var(--warm-brown);
    font-size: 20px;
}

.media-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--medium-brown);
    max-width: 600px;
    margin: 0 auto;
}

.media-card button {
    background-color: var(--warm-brown);
    border: 2px solid var(--medium-brown);
    margin-top: 3.5rem;
    padding: 10px 30%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.media-card button a {
    text-decoration: none;
    color: var(--off-white);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .service-card h3 {
        font-size: 20px;
    }
}

.container4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 10rem;
}

.main-content {
    display: flex;
    position: relative;
}

.left-section {
    width: 33%;
    padding: 20px;
    background-color: #e4ddd5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.latest-text {
    font-size: 18px;
    color: #5a4a42;
    margin: 0 0 5px 0;
}

.weddings-text {
    font-size: 24px;
    color: #5a4a42;
    margin: 0 0 30px 0;
    font-weight: bold;
}

.left-image {
    width: 86%;
    border: 10px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.right-section {
    width: 70%;
    padding-left: 20px;
    position: relative;
}

.main-image {
    width: 100%;
    border: 10px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.couple-name {
    position: absolute;
    bottom: 40px;
    left: 80px;
    color: white;
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.couple-name strong {
    font-weight: bold;
}

/* Media Queries */
@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        width: 93%;
    }

    .right-section {
        padding-left: 0;
        padding-top: 20px;
    }

    .left-section {
        order: 1;
    }

    .right-section {
        order: 2;
    }

    .couple-name {
        font-size: 20px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 768px) {

    .left-section {
        padding: 15px;
    }

    .packages-grid {
        width: 14rem;
        margin-left: 1rem;
    }

    .weddings-text {
        font-size: 20px;
    }

    .couple-name {
        font-size: 18px;
    }

    .left-image,
    .main-image {
        border-width: 7px;
    }
}

@media (max-width: 576px) {
    .latest-text {
        font-size: 16px;
    }

    .packages-grid {
        width: 14rem;
        margin-left: 1rem;
    }

    .weddings-text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .couple-name {
        font-size: 16px;
        bottom: 15px;
        left: 15px;
    }

    .left-image,
    .main-image {
        border-width: 5px;
    }
}

.packages-container {
    background-color: #e4ddd5;
    padding: 50px 20px;
}

.packages-header {
    text-align: center;
    margin-bottom: 40px;
}

.packages-header h1 {
    color: #5a4a42;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.packages-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background-color: white;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border: 2px solid #b8860b;
    padding: 38px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.package-card-best {
    background-color: var(--warm-brown);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border: 2px solid white;
    padding: 38px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    color: white;

}

.package-card-best:hover {
    transform: translateY(-10px);
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4ddd5;
}

.package-header h2 {
    color: #5a4a42;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.package-header h3 {
    color: #b8860b;
    font-size: 24px;
    margin-top: 0;
}

.package-header-best {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4ddd5;
}

.package-header-best h2 {
    color: white;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.package-header-best h3 {
    color: white;
    font-size: 24px;
    margin-top: 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-brown);
    border-bottom: 1px dashed #e4ddd5;
}

.package-best {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.package-best li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-bottom: 1px dashed #e4ddd5;
}

.package-price {
    margin: 25px 0;
}

.package-price p {
    margin: 5px 0;
    color: #5a4a42;
}

.package-price .price {
    font-size: 28px;
    font-weight: bold;
    color: #b8860b;
}

.packageprice {
    margin: 25px 0;
}

.packageprice p {
    margin: 5px 0;
    color: white;
}

.packageprice .price {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.package-button {
    background-color: #5a4a42;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.package-button a {
    text-decoration: none;
    color: white;
}

.packagebutton {
    background-color: white;
    color: var(--warm-brown);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.packagebutton a {
    text-decoration: none;
    color: var(--warm-brown);
}

.package-button:hover {
    background-color: #3a2e28;
}

/* Media Queries */
@media (max-width: 1024px) {
    .packages-grid {
        gap: 20px;
    }

    .package-card {
        width: 280px;
    }

    .package-card-best {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .packages-header h1 {
        font-size: 28px;
    }

    .packages-grid {
        grid-template-columns: auto;
        justify-content: center;
        gap: 20px;
        width: 100%;

    }

    .package-header h2 {
        font-size: 16px;
    }

    .package-header h3 {
        font-size: 20px;
    }

    .package-price .price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .packages-container {
        padding: 30px 15px;
    }

    .packages-header h1 {
        font-size: 26px;
    }

    .package-header h2 {
        font-size: 16px;
    }

    .package-header h3 {
        font-size: 20px;
    }

    .package-price .price {
        font-size: 24px;
    }
}

.testimonial-container {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.testimonial-image {
    width: 60%;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 10px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    width: 40%;
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.testimonial-text {
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin-left: -80px;
}

.couple-name {
    font-size: 24px;
    color: white;
    margin-bottom: 18px;
    line-height: 1.3;
}

.couple-name strong {
    font-weight: bold;
    color: white;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #5a4a42;
    font-style: italic;
    margin: 0;
}

/* Media Queries */
@media (max-width: 1024px) {
    .testimonial-container {
        margin: 80px auto;
    }

    .testimonial-image img {
        height: 450px;
    }

    .testimonial-text {
        padding: 30px;
    }

    .couple-name {
        font-size: 22px;
    }

    .testimonial-quote {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        margin: 60px auto;
    }

    .testimonial-image,
    .testimonial-content {
        width: 95.9%;
    }

    .testimonial-content {
        padding-left: 0;
        margin-top: -50px;
    }

    .testimonial-text {
        margin-left: 20px;
        margin-right: 20px;
    }

    .testimonial-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .testimonial-container {
        margin: 40px auto;
    }

    .testimonial-image img {
        height: 350px;
        border-width: 7px;
    }

    .testimonial-text {
        padding: 20px;
    }

    .couple-name {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .testimonial-quote {
        font-size: 15px;
    }
}

/* Footer */
footer {
    background-color: #F5F0E9;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(139, 107, 74, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B6B4A;
    margin-bottom: 20px;
}

.footer-description {
    color: #5A4A42;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8B6B4A;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #d4a977;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #5A4A42;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4a977;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d4a977;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #8B6B4A;
}

.copyright {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 107, 74, 0.1);
    text-align: center;
    color: #8B6B4A;
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .themes {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .intro {
        font-size: 2rem;
    }

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

    .stats-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .choice {
        font-size: 2rem;
    }

    .items {
        padding: 25px;
    }
}