/* Fonts */

/* Normal */
@font-face {
    font-family: 'Georgia';
    src: url('../font/georgia.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Georgia';
    src: url('../font/georgia-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'Georgia';
    src: url('../font/georgia-italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Bold Italic (if you have it) */
@font-face {
    font-family: 'Georgia';
    src: url('../font/georgia-bold-italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* Body */
body {
    background: #f6f0f6;
    font-family: 'Lato', sans-serif;
    color: #5c5564;
}

/* Headings */
h1,
h2,
h3,
h4 {
    font-family: 'Georgia', serif;
    color: #5a3c6f;
}

/* Navigation */
.main-nav {
    background: #f4edf5;
    padding: 12px 0;
}

.brand-text {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #5a3c6f;
}

.nav-link {
    color: #5a3c6f;
    font-weight: 500;
    margin: 0 12px;
}

.nav-link.active {
    border-bottom: 2px solid #c7a15a;
}

.hero {
    background: url('../img/header.jpg') center center / cover no-repeat;
    height: auto;
    /* Set aspect ratio based on your image: 1920 / 696 ≈ 2.76 */
    aspect-ratio: 1920 / 696;
    display: flex;
    justify-content: center;
    /* horizontal centering */
    align-items: flex-end;
    /* vertical alignment near bottom */
    padding-bottom: 40px;
    /* space from bottom */
}

.hero-button {
    /* optional: adjust button size for hero */
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Buttons */
.btn-gold {
    background: #c7a15a;
    color: white;
    padding: 12px 28px;
    border-radius: 15px;
    border: none;
}

.btn-gold:hover {
    background: #b48f4f;
    color: white;
}

.section {
    padding: 80px 0;
}

.section-soft {
    padding: 80px 0;
}

.section-title {
    font-weight: 500;
}

.divider {
    width: 60%;              
    height: 1px;
    margin: 20px 20%;
    background: linear-gradient(
        to right,
        transparent 0%, 
        #c7a15a 10%, 
        #c7a15a 90%, 
        transparent 100%
    );
}

.content-card {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 55px;
    margin-bottom: 15px;
}

/* Packages */
.package-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.package-card h3, .package-card h4 {
    color: white;
}

.package-card .divider {
    background: rgba(255, 255, 255, 0.5);
    margin: 15px auto;
}

.package-teal {
    background: #4a9496;
}

.package-purple {
    background: #8b6fb3;
}

.package-gold {
    background: #b89551;
}

.package-icon {
    width: 100px;
    height: auto;
    margin: 20px auto 0;
    display: block;
}

/* Testemonails */
.testimonial-section {
    background: #efedf2;
    padding: 70px 0;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    margin-top: 20px;
}

.testimonial-author {
    margin-top: 10px;
}

.cta-section {
    background: #f5eef4;
    padding: 70px 0;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #7c5c95, #a27ab9);
    color: white;
    padding: 50px 0;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.4);
    width: 200px;
    margin: 20px auto;
}

/* Media Queries */
/* optional: improve readability on small screens */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
        background-position: center top;
    }
}