/* ===== DRAGONFLY DREAMS COLOR PALETTE ===== */
:root {
    --deep-purple: #5D3A6B;     
    --vibrant-magenta: #A64D79;  
    --dark-plum: #2D1B3C;        
    --soft-lavender: #F0E6FA;    
    --warm-gold: #F4A261;        
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-plum);
    background: linear-gradient(135deg, #1a0b1f 0%, #2d1b3c 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    color: var(--dark-plum);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
    border-bottom: 3px solid var(--vibrant-magenta);
    padding-bottom: 0.5rem;
}

h2 {
    font-size: 1.8rem;
    color: var(--deep-purple);
}

h3 {
    font-size: 1.3rem;
    color: var(--vibrant-magenta);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--vibrant-magenta) 100%);
    color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(93, 58, 107, 0.5)
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo h1 {
    color: white;
    border-bottom: none;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
    color: var(--warm-gold);
    border-bottom-color: var(--warm-gold);
    font-size: 1.1rem;
}

/* ===== MAIN CONTENT ===== */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 5%;
    background-color: var(--soft-lavender);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== BUTTONS ===== */
.button {
    display: inline-block;
    background: linear-gradient(135deg, var(--warm-gold) 0%, #e98a3e 100%);
    color: var(--dark-plum);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: linear-gradient(135deg, #e98a3e 0%, var(--warm-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.4);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    margin-bottom: 3rem;
}

.hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.hero-text {
    background: rgba(45, 27, 60, 0.9); 
    color: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--warm-gold);
    position: absolute;
    bottom: 50px;
    left: 50px;
    
}

.hero-text h2 {
    color: var(--warm-gold);
}

/* ===== FEATURES GRID ===== */
.features {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(45, 27, 60, 0.1);
    transition: transform 0.3s;
    border-bottom: 3px solid var(--vibrant-magenta);
}

.feature:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--warm-gold);
    box-shadow: 0 8px 20px rgba(166, 77, 121, 0.2);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(94, 75, 86, 0.1);
}

.offerings {
    list-style-position: inside;
    margin: 1rem 0;
}

.offerings li {
    padding: 0.5rem 0;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--vibrant-magenta) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.testimonial h2 {
    color: white;
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 1rem 0;
}

cite {
    display: block;
    margin-top: 1rem;
    color: var(--warm-gold);
}
.video-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(45, 27, 60, 0.1);
}


.video-container {
    max-width: 800px;      
    width: 100%;           
    margin: 2rem auto;     
    border-radius: 10px;
    overflow: hidden;      
    box-shadow: 0 8px 25px rgba(166, 77, 121, 0.3);
}


video {
    width: 100%;           
    height: auto;          
    display: block;        
}

/* ===== GALLERY PAGE ===== */
.gallery-intro {
    text-align: center;
    margin: 2rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: start;
}

.gallery-item {
     background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(45, 27, 60, 0.1);
    transition: transform 0.3s;
    aspect-ratio: 1 / 1; 
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
   transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(166, 77, 121, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    transition: transform 0.5s;      
}

.gallery-item p {
    height: 20%;
    margin: 0;
    padding: 0.8rem;
    text-align: center;
    font-weight: bold;
    color: var(--dark-plum);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item .image-container {
    width: 100%;
    height: 80%; 
    overflow: hidden;
}

/* ===== TABLE STYLES ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(94, 75, 86, 0.1);
}

.price-table th {
    background-color: var(--deep-purple);
    color: white;
    padding: 1rem;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.price-table tr:hover {
   background-color: #f8e3ff;
}   

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info, .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(45, 27, 60, 0.1);
}

.contact-info ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.contact-info li {
    padding: 0.3rem 0;
}

/* ===== FORM STYLES ===== */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 1rem 0 0.3rem;
    font-weight: bold;
    color: var(--plum);
}

input, select, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--vibrant-magenta);
    box-shadow: 0 0 5px rgba(166, 77, 121, 0.3);
}

input:required:valid {
    border-left: 4px solid var(--vibrant-magenta);
}

input:required:invalid {
    border-left: 4px solid #e53e3e;
}

.inline-label {
    display: inline;
    margin-left: 0.5rem;
}

fieldset {
    border: 1px solid var(--deep-purple);
    border-radius: 5px;
    padding: 1rem;
    margin: 1rem 0;
}

legend {
    font-weight: bold;
    color: var(--deep-purple);
    padding: 0 0.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--vibrant-magenta) 100%);
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    box-shadow: 0 -4px 15px rgba(93, 58, 107, 0.5);
}

footer a {
    color: var(--warm-gold);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.social {
    margin-top: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero-text {
        position: static;
        background: var(--plum);
        margin-top: 1rem;
    }
    
    .feature-grid, .gallery-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero img {
        height: 250px;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th, .price-table td {
        padding: 0.5rem;
    }
}