/* Basic Reset & Typography */
:root {
    --primary-color: #A03372; /* A deep, elegant pink/purple based on your brand */
    --secondary-color: #F8B4D4; /* Lighter pink accent */
    --dark-neutral: #1a1a1a; /* Almost black */
    --light-neutral: #f4f4f4; /* Off-white */
    --text-color: #333;
    --white: #ffffff;
}

* {	
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-neutral);
    margin-bottom: 15px;
}

h1 {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2em;
    font-weight: 600;
    color: var(--dark-neutral);
}

h3 {
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #8c2e64; /* Slightly darker */
}

.btn-secondary {
    background-color: var(--dark-neutral);
    color: var(--white);
    border: 1px solid var(--dark-neutral);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--dark-neutral);
    color: var(--white);
    padding: 15px 0;
    border-bottom: 3px solid var(--primary-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--white);
    font-family: 'Myriad Pro', 'Playfair Display', serif;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 0.5em;
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: var(--white);
    font-weight: 400;
    font-size: 0.95em;
    letter-spacing: 0.5px;
}

.nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    position: relative; /* Needed for absolute positioning of video and overlay */
    overflow: hidden; /* Ensures video doesn't spill out */
    color: var(--white);
    text-align: center;
    padding: 120px 0; /* Padding for content inside hero */
    display: flex; /* Flexbox to center content vertically */
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Ensure a decent height */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Puts video behind text */
    transform: translate(-50%, -50%); /* Centers video */
    background-size: cover;
    filter: brightness(0.7); /* Darken the video a bit */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
    z-index: 0; /* Above video, below text */
}

.hero-content {
    position: relative; /* Brings content to front */
    z-index: 1; /* Above overlay */
}

.hero-section h1 {
    font-size: 4em;
    margin-bottom: 0px;
    color: var(--secondary-color);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.hero-section h2 {
    font-size: 2.1em;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-section p {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.15em;
    line-height: 1.7;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background-color: var(--light-neutral);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.package-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 0 20px;
}

.package-card p {
    font-size: 0.95em;
    color: var(--text-color);
    padding: 0 20px;
    flex-grow: 1; /* Makes paragraphs take available space */
}

.package-card ul {
    list-style: none;
    padding: 20px;
    text-align: left;
}

.package-card ul li {
    margin-bottom: 10px;
    font-size: 0.9em;
    color: var(--text-color);
}

.package-card ul li i { /* Font Awesome icon */
    color: var(--primary-color);
    margin-right: 8px;
}

.package-card .btn-secondary {
    margin-top: 20px;
    align-self: center; /* Center the button */
}

/* CTA Contact Section */
.cta-contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1600x600/333333/ffffff?text=Creative+Team+Shoot') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-contact-section h3 {
    color: var(--secondary-color);
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-contact-section p {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    line-height: 1.7;
}

.contact-prompt {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-prompt a {
    color: var(--secondary-color);
    font-weight: 700;
}
.contact-prompt a:hover {
    text-decoration:none;
	color: white;
}


.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    background-color: var(--light-neutral);
    color: var(--dark-neutral);
}

.contact-form select {
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}


.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

.form-note {
    font-size: 0.85em;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
}


/* Footer */
.footer {
    background-color: var(--dark-neutral);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}


.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer p {
    margin-bottom: 10px;
	letter-spacing: 0.4em;
}

.footer .social-links a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1em;
}

.footer .social-links a:hover {
    color: var(--secondary-color);
}


/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    .nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav ul li {
        margin: 0 15px 10px 15px;
    }

    .hero-section {
        padding: 80px 0;
        min-height: 400px; /* Adjust height for mobile */
    }
    .hero-section h1 {
        font-size: 2.5em;
    }
    .hero-section h2 {
        font-size: 1.8em;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .packages-section, .cta-contact-section {
        padding: 60px 0;
    }

    .cta-contact-section h3 {
        font-size: 2em;
    }
    .cta-contact-section p {
        font-size: 1em;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2em;
		margin-bottom: 0px;
    }
    .hero-section h2 {
        font-size: 1.1em;
		margin-bottom: 30px;
		
    }
	.hero-section p {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 0.9em;
    line-height: 1.7;
}
    .btn {
        padding: 10px 20px;
        font-size: 0.85em;
    }
}