/*
   Crayerxo Creative Studio - Main Stylesheet
   Following retro/vintage design principles with specified color palette
*/

/* Base Variables */
:root {
    --primary-color: #ff006e;
    --light-shade: #ffe6f2;
    --dark-shade: #b8004f;
    --white: #ffffff;
    --black: #000000;
    --gray: #333333;
    --light-gray: #f8f8f8;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-shade);
    background-color: var(--light-shade);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Times New Roman', serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-shade);
}

h1 {
    font-size: 3.052em;
}

h2 {
    font-size: 2.441em;
}

h3 {
    font-size: 1.953em;
}

h4 {
    font-size: 1.563em;
}

h5 {
    font-size: 1.25em;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-shade);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.primary_btn, .secondary_btn, .service_btn, .submit_btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary_btn:hover, .secondary_btn:hover, .service_btn:hover, .submit_btn:hover {
    background-color: var(--dark-shade);
}

.secondary_btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary_btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.service_btn {
    padding: 8px 20px;
    font-size: 0.9em;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section_title {
    text-align: center;
    margin-bottom: 50px;
}

.section_title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section_title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section_title p {
    max-width: 700px;
    margin: 0 auto;
}

/* Header/Navigation */
.main_menu {
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar_brand {
    display: inline-block;
}

.navbar_brand img {
    max-height: 50px;
}

.nav_toggle {
    display: none;
}

.nav_toggle_label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.navbar_nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav_link {
    color: var(--dark-shade);
    font-size: 16px;
    font-weight: 500;
}

.nav_link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero_section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.hero_content {
    max-width: 800px;
    margin: 0 auto;
}

.hero_content h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero_content p {
    color: var(--light-shade);
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero_content .primary_btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.hero_content .primary_btn:hover {
    background-color: var(--light-shade);
}

/* About Section */
.about_content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about_image, .about_text {
    flex: 1;
}

.about_image img {
    width: 100%;
    display: block;
}

/* Services Section */
.services_section {
    background-color: var(--white);
}

.services_grid {
    display: flex;
    gap: 30px;
}

.service_card {
    flex: 1;
    background-color: var(--light-shade);
}

.service_image img {
    width: 100%;
    display: block;
}

.service_content {
    padding: 25px;
}

.service_content h3 {
    margin-bottom: 15px;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

/* Featured Section */
.featured_content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.featured_image, .featured_text {
    flex: 1;
}

.featured_image img {
    width: 100%;
    display: block;
}

.feature_list {
    list-style-position: inside;
    margin: 20px 0;
}

.feature_list li {
    margin-bottom: 10px;
}

.event_details {
    background-color: var(--light-shade);
    padding: 20px;
    margin: 20px 0;
}

/* Gallery Section */
.gallery_section {
    background-color: var(--white);
}

.gallery_grid {
    display: flex;
    gap: 20px;
}

.gallery_item {
    flex: 1;
}

.gallery_item img {
    width: 100%;
    display: block;
}

/* Testimonial Section */
.testimonial_grid {
    display: flex;
    gap: 30px;
}

.testimonial_card {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
}

.testimonial_content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial_author h4 {
    margin-bottom: 5px;
}

/* Contact Section */
.contact_section {
    background-color: var(--white);
}

.contact_content {
    display: flex;
    gap: 50px;
}

.contact_info, .contact_form_wrapper {
    flex: 1;
}

.info_item {
    margin-bottom: 30px;
}

.info_item h3 {
    margin-bottom: 10px;
}

.contact_form {
    margin-top: 20px;
}

.form_row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form_group {
    flex: 1;
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background-color: var(--light-shade);
}

.submit_btn {
    width: 100%;
}

/* Footer */
.footer_area {
    background-color: var(--gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer_top {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer_widget {
    flex: 1;
}

.footer_logo {
    margin-bottom: 20px;
}

.footer_logo img {
    max-height: 50px;
}

.footer_widget h3 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer_links,
.contact_info {
    list-style: none;
}

.footer_links li,
.contact_info li {
    margin-bottom: 10px;
}

.footer_links a {
    color: var(--light-shade);
}

.footer_links a:hover {
    color: var(--primary-color);
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

/* Cookie Consent */
.cookie_consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-shade);
    color: var(--white);
    padding: 15px 0;
    z-index: 9999;
}

.cookie_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie_buttons {
    display: flex;
    gap: 15px;
}

.accept_cookies {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.cookie_link {
    color: var(--light-shade);
    text-decoration: underline;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav_toggle_label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav_wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        transition: all 0.3s ease;
        padding-top: 80px;
    }

    .navbar_nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav_item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav_link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
    }

    .nav_toggle:checked ~ .nav_wrapper {
        left: 0;
    }

    .nav_toggle:checked ~ .nav_toggle_label .hamburger {
        background: transparent;
    }

    .nav_toggle:checked ~ .nav_toggle_label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav_toggle:checked ~ .nav_toggle_label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .about_content,
    .featured_content,
    .contact_content {
        flex-direction: column;
        gap: 30px;
    }

    .services_grid,
    .gallery_grid,

    .testimonial_grid {
        flex-direction: column;
    }

    .footer_top {
        flex-direction: column;
        gap: 30px;
    }

    .cookie_content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media screen and (max-width: 576px) {
    .form_row {
        flex-direction: column;
    }

    section {
        padding: 50px 0;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }
}

/* Additional styles for about.html page to be added to style.css */

/* About Hero Section */
.about_hero_section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.about_hero_content {
    max-width: 800px;
    margin: 0 auto;
}

.about_hero_content h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.about_hero_content p {
    color: var(--light-shade);
    font-size: 1.2em;
}

/* About Content Section */
.about_content_section {
    padding: 80px 0;
}

.about_story {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about_large_image {
    width: 100%;
}

.about_large_image img {
    width: 100%;
    display: block;
}

.about_story_text h2 {
    margin-bottom: 30px;
}

.about_story_text h3 {
    margin: 40px 0 20px;
}

.about_story_text p {
    margin-bottom: 20px;
}

.about_list {
    list-style-position: inside;
    margin: 20px 0 40px;
}

.about_list li {
    margin-bottom: 15px;
}

/* Team Section */
.team_section {
    background-color: var(--white);
    padding: 80px 0;
}

.team_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team_card {
    background-color: var(--light-shade);
    padding: 30px;
}

.team_content h3 {
    margin-bottom: 5px;
}

.team_role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Values Section */
.values_section {
    padding: 80px 0;
}

.values_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value_card {
    padding: 30px;
    background-color: var(--light-shade);
}

.value_card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .team_grid,
    .values_grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .about_hero_section {
        padding: 70px 0;
    }

    .about_hero_content h1 {
        font-size: 2.5em;
    }

    .team_card,
    .value_card {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .about_hero_section {
        padding: 50px 0;
    }

    .about_content_section,
    .team_section,
    .values_section {
        padding: 40px 0;
    }
}

.cookie_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-shade);
    color: var(--white);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    animation: slideCookieBanner 0.5s forwards;
}

@keyframes slideCookieBanner {
    to {
        transform: translateY(0);
    }
}

.cookie_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.cookie_text {
    flex-grow: 1;
    padding-right: 20px;
}

.cookie_text p {
    margin: 0;
}

.cookie_actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie_accept {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie_accept:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.cookie_learn {
    color: var(--light-shade);
    text-decoration: underline;
}

.cookie_learn:hover {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cookie_content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie_text {
        padding-right: 0;
    }
}

/* Additional styles for thankyou.php page to be added to style.css */

/* Thank You Section */
.thankyou_section {
    background-color: var(--light-shade);
    padding: 100px 0;
    text-align: center;
}

.thankyou_content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
}

.thankyou_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--white);
    stroke-miterlimit: 10;
    background-color: var(--primary-color);
    position: relative;
}

.checkmark:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 28%;
    width: 25%;
    height: 50%;
    border-right: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
    transform: translate(-50%, -60%) rotate(45deg);
}

.thankyou_content h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.response_time {
    font-weight: 600;
    margin: 20px 0 30px;
}

.action_buttons {
    margin-top: 30px;
}

/* What's Next Section */
.whatsnext_section {
    padding: 80px 0;
    background-color: var(--white);
}

.whatsnext_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.whatsnext_card {
    padding: 30px;
    background-color: var(--light-shade);
    text-align: center;
}

.whatsnext_card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .whatsnext_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .thankyou_section {
        padding: 60px 0;
    }

    .thankyou_content {
        padding: 30px 20px;
    }

    .whatsnext_grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .thankyou_section {
        padding: 40px 0;
    }

    .thankyou_icon {
        width: 60px;
        height: 60px;
    }

    .checkmark {
        width: 60px;
        height: 60px;
    }
}