/*==========================================
	0. BASE & GLOBAL STYLES
==========================================*/
/********************************************
  Mobile Responsiveness & Box Model Fix
  Ensures padding/border do not cause overflow.
*********************************************/
*, *::before, *::after {
    box-sizing: border-box;							/* This is the fix! */
}
/*********************************************
	Main Stylesheet for the Website
*********************************************/

/*=========================================
	1. TYPOGRAPHY & UTILITY
===========================================*/


/******************************************
	 General Body & Typography
******************************************/
html, body {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #673AB7, #8A2BE2);			/* Amethyst background */
    color: #E0BBE4; 								/* Light text color */
    display: flex;
    font-size: 1.125rem;
    flex-direction: column;
    line-height: 1.6;
    min-height: 100vh;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.container {
    width: 90%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.form-group input,
.form-group textarea {
    background-color: #4C265A;
    color: white;
    border-color: #FFD700;
    border-width: 1px;
    border-radius: 4px;
}
p.subtitle {
    color:#FFFFFFCC;
    font-size: 28px;
}
h2{
    color: #FFD700;
}
h2.page-title {
    font-size: 42px;
}
p {
    color:#FFFFFFCC;
}
/*============================================
	2. NAVIGATION & HEADER
=============================================*/
/**********************************************
         Navigation Bar Desktop & Mobile 
**********************************************/
.navbar {
    background-color: #331A40;
    border-bottom: 2px solid #5F256B;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E0BBE4;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-brand:hover {
    color: #FFD700;
}
.nav-links {
    display: none;								/* Hidden on mobile by default */
    align-items: center;
}
.nav-links a {
    color: #E0BBE4;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #FFD700;
}

/*============================
	 Dropdown Menu 
=============================*/
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #E0BBE4;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}
.dropdown-button:hover {
    color: #FFD700;
}
.dropdown-button svg {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
    display: inline-block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #331A40;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-item {
    color: #E0BBE4;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}
.dropdown-item:hover {
    background-color: #5F256B;
}


/*===============================
	 Mobile Menu
================================*/
#mobile-menu-button {
    display: block; 								/* Visible on mobile by default */
    background: none;
    border: none;
    color: #E0BBE4;
    cursor: pointer;
}
#mobile-menu {
    padding-top: 1rem;
    background-color: #331A40;
    border-top: 1px solid #5F256B;
    position: absolute;
    width: 100%;
    left: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none; 								/*Initially hidden, will be shown by JS*/
    z-index: 100;
}
#mobile-menu.show {
    display: block;
}
#mobile-menu a,
#mobile-menu .dropdown-button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1.5rem;
    color: #E0BBE4;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
#mobile-menu a:hover,
#mobile-menu .dropdown-button:hover {
    background-color: #5F256B;
    color: #FFD700;
}

/**************************************
     	Style for dropdown
      menus within mobile menu 
     if you implement them fully
**************************************/
#mobile-menu .dropdown-menu {
    position: static;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: none;
    border-radius: 0;
    padding-left: 1rem;
}
#mobile-menu .dropdown-menu .dropdown-item {
    padding-left: 2rem;
}
/*=========================================
	3. MAIN CONTENT LAYOUT
==========================================*/
/*******************************************
            MAIN CONTENT  D&M
********************************************/
main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
.content-card {
    background-color: #8A2BE2;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
    width: 100%;
    max-width: 896px;								/* max-w-4xl */
    border: 1px solid #FFD700;
    color: #FFD700;   
}
.content-card.full-width-card {
    background-color:rgba(255, 255, 255, 0.1);
}
.content-card.contact.form {
    background-color: #331A40;
}
#phone::placeholder {
  text-align: center; /* or left, right */
}
/************************************
   Homepage Specific (index.html)
*************************************/
.home-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.profile--container {
    flex-shrink: 0;
}
.profile- {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
.welcome-text h1 {
    font-size: 3rem; 
    font-weight: 800; 								/* font-extrabold */
    margin-bottom: 1rem;
    color: #FFD700;
}
.welcome-text p {
    font-size: 1.25rem; 							/* text-xl */
    font-weight: 300; 								/* font-light */
    margin: 0;
}
.welcome-text .subtitle {
    margin-top: 1rem;
    font-size: 1rem; 								/* text-md */
}

/**************************************************
       Contact Page Specific (contact.php)
**************************************************/
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.contact-card h2 {
    font-size: 2.25rem; 							/* text-4xl */
    font-weight: 800;
    margin-bottom: 1rem;
    color: #FFD700;
}
.contact-card .intro-text {
    font-size: 1.125rem; 							/* text-lg */
    font-weight: 300; 								/* font-light */
    margin-bottom: 1.5rem;
}
.contact-info {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.contact-info p {
    margin: 0.5rem 0;
}
.contact-info i {
    margin-right: 0.5rem;
}
.mobile-break {
    display: none; 
}
/********************************************
   Social Media Link Styling (contact.php)
*********************************************/
.social-links-container {
    text-align: center; 							/* Centers the icons */
    margin: 20px auto;
    padding-top: 20px;    							/* Using padding-top to give space above the icons */
}
.social-icon {
    display: inline-block; 							/* Makes the icons sit side-by-side */
    width: 40px; 								/* Sets the size of the icon container */
    height: 40px; 
    margin: 0 10px;
    color: #FFD700; 								/* Sets the icons to the gold color */
    transition: transform 0.2s ease, color 0.2s ease;
}
.social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.social-icon:hover {
    color: #E0BBE4; 								/* Light hover color */
    transform: scale(1.1); 							/* Slight zoom effect on hover */
}
/*******************************************
                   FOOTER
********************************************/
footer {
    padding: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/*********************************************
	DELIVERY PAGE SPECIFIC STYLES
**********************************************/
/************************************************
   General Styling for Images to be Responsive
*************************************************/
 img {
    max-width: 100%; 								/* Ensures images scale down */
    height: auto;    								/* Maintains aspect ratio */
    width: auto;
}
.img-rounded {
    border-radius: 50%; 							/* Adjust this value for more or less rounding */
}
#fryport {
    width: 30%;
    height:auto;
}

/*****************************************************
 Styles for the main content area for delivery page
*****************************************************/
.delivery-section-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto;
}
/************************************************
 Mobile Layout (Default - flexbox column) 
*************************************************/
.delivery-layout {
    display: flex; 								/* Use flexbox for mobile */
    flex-direction: column; 							/* Stack items vertically */
    align-items: center; 							/* Center items horizontally */
    gap: 20px; 									/* Space between description and maps */
}
.frogo-image-and-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.delivery-photo-small {
    width: 100%;
    text-align: center;
}
.delivery-img-placeholder.small {
    display: inline-block;
    width: 100%;
    max-width: 250px;
    height: auto;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.delivery-img-placeholder.small img {
    width: 100%;
    height: auto;
    display: block;
}
.delivery-text {
    text-align: center; 							/* Center text on mobile */
    width: 100%;
}
.delivery-text h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 1rem;
}
.map-container {
    display: flex; 
    flex-direction: column;							/*Ensure maps stack vertically on mobile*/
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    width: 100%; 								/*Maps take full width of delivery-layout on mobile*/
}
.delivery-map {
    width: 100%; 								/* Make maps responsive to their container on mobile */
    max-width: 400px; 								/* Limit individual map width on mobile */
    height: 300px !important; 							/* Fixed height for maps on mobile */
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background-color: rgba(255, 255, 255, 0.05);
    display: block;
}


/* ========================================
  Responsive Design - Main Breakpoint (Desktop)
  ======================================== */
@media (min-width: 768px) { 							/* md breakpoint */
    .nav-links {
        display: flex;								/* Show desktop menu */
        gap: 1rem;
    }
    .container {
        width: 95%; 
    }
    .content-card {
        padding: 15px;								/*Reduced padding on the card itself for smaller screens*/
    }
/******************************************************************
 FINAL FIX: FORCE YELLOW BORDER AND ALIGNMENT ON MOBILE INPUTS 
    Use high specificity to defeat stubborn browser defaults 
*******************************************************************/
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        border: 2px solid #FFD700 !important;					/*Force the border color and style*/
        box-sizing: border-box !important;					/*Re-applied box-sizing just in case*/
        background-color: #4C265A !important;					/*Verified background-color is correct*/
        color: #E0BBE4 !important;
    }
    #mobile-menu-button {
        display: none; 								/*Hide mobile menu button on desktop*/
    }
    #mobile-menu {
        display: none; 								/*Hide mobile menu on desktop*/
    }
/***********************************************
    General content alignment for text pages 
***********************************************/
    .text-content {
        text-align: left;
        margin-top: 1.5rem;
    }
    .text-content p {
        margin-bottom: 1rem;
    }

    .mission-quote {
        font-size: 1.5rem;
        font-style: italic;
        font-weight: 600;
        color: #FFD700;
        border-left: 4px solid #FFD700;
        padding-left: 1rem;
        margin: 1.5rem 0;
    }
/***********************************************
      Styles for Services & Projects pages 
************************************************/
    main {
        align-items: flex-start;						/* Align content to the top for most pages */
    }
    .full-width-card {
        max-width: 100%;
    }
    .service-element {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 0.75rem;
        margin-bottom: 2rem;
        overflow: hidden;
        position: relative;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

/*************************************************
   Adjustments for Store Page Images on Mobile
**************************************************/
.store-img-placeholder {
    max-width: 100%;								/* On Mobile, ensure the placeholder doesn't exceed screen width */
    height: auto; 								/* Allow height to adjust based on content */
    margin-left: auto; 								/* Center the placeholder */
    margin-right: auto;
}
/********************************************
   Make sure the image inside also behaves
*********************************************/
.store-img-placeholder img {
    display: block;								/* Ensure no extra space */
    width: 100%;								/* Explicitly set to 100% of its parent placeholder */
    height: auto;								/* Ensure aspect ratio is maintained */
    object-fit: cover;								/* Keeps image covering the area, might crop */
}
    .service-description {
        padding: 1.5rem;
        text-align: left;
    }
    .service-description h3 {
        margin-top: 0;
        font-size: 1.75rem;
        color: #FFD700;
    }
    .service-rate {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
        background-color: #FFD700;
        color: #331A40;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-weight: 600;
        font-size: 1.1rem;
    }



/*******************************
         Project elements
*******************************/
    .project-element {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 0.75rem;
        margin-bottom: 2rem;
        overflow: hidden;
        position: relative;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .project-img-placeholder {
        width: 100%;
        height: 300px;
        background-color: rgba(255, 255, 255, 0.05);
        border-bottom: 2px solid #5F256B;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .project-img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .project-description {
        padding: 1.5rem;
        text-align: left;
    }
    .project-description h3 {
        margin-top: 0;
        font-size: 1.75rem;
        color: #FFD700;
    }
    .project-link {
        margin-top: 1rem;
        text-align: right;
    }
    .project-link a {
        color: #FFD700;
        text-decoration: none;
        font-weight: 600;
        padding: 0.5rem 1rem;
        border: 1px solid #FFD700;
        border-radius: 0.375rem;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    .project-link a:hover {
        background-color: #FFD700;
        color: #331A40;
    }


/************************************
         Styles for Store Page 
*************************************/
    .store-grid {
        grid-template-columns: repeat(3, 1fr); 						/* 3 columns on desktop */
    }
    .store-item-link {
        text-decoration: none;
        color: inherit;
    }
    .store-item {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 0.75rem;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .store-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }
    .store-img-placeholder {
        width: 100%;
        height: 200px;
        background-color: rgba(255, 255, 255, 0.05);
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.5);
        overflow: hidden;
    }
    .store-img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .store-item-info {
        padding: 1rem;
        text-align: left;
    }
    .store-item-info p {
        margin: 0.25rem 0;
    }



/***********************************************
      DESKTOP LAYOUT FOR DELIVERY PAGE 
***********************************************/
    .delivery-layout {
        display: grid;									/* Use grid for desktop */
        grid-template-areas:
            "maps-area frogo-desc";							/* Maps on the left, description on the right */
        grid-template-columns: 1fr 2fr;							/* Adjust column widths as desired */
        gap: 30px;
        align-items: start;
    }
    .frogo-image-and-description {
        grid-area: frogo-desc;								/* Assign to the right column */
        flex-direction: column;								/* Still stack image and text within this column */
        align-items: center; 								/* Center horizontally within its column */
    }
    .delivery-text {
        text-align: left;								/* Align text left on desktop */
    }


/*=======================================
                  Blog
========================================*/
.page-title {
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.5rem;
}
.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
.blog-post {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    padding-bottom: 40px
    border-radius: 0.75rem;
    border-bottom: 2px solid #5F256B;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: justify;
}
.blog-post:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.blog-post-body {
    text-align: center;									/* This centers all text content (paragraphs, list items, etc.). */
}
.blog-post-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 1rem;
    text-align: center;
}
.blog-post-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.blog-post-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}
.blog-post-body h4 {
    color: #FFD700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.blog-post-body ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}
.blog-post-body li {
    margin-bottom: 0.5rem;
}
.blog-post-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    display: inline-block;
    margin: 25px 0;
    padding: 5px;
    background-color: #3f2a70;									/* Re-enabled background color */
    border-radius: 8px;
}
.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.read-more:hover {
    color: #e6c200;
    text-decoration: underline;
}


/***************************************************************
	Responsive adjustments for mobile (contact.php & blog.php) 
***************************************************************/
@media (max-width: 767px) {
    .contact-form {
	display:block !important;
	flex-direction: column !important;
    }
    .blog-post-title {
        font-size: 1.5rem;
	color: #FFD700;
    }
    .page-title {
        font-size: 2rem;
	color: #FFD700;
    }
/***************************************************
	Input specific fix to ensure full width
****************************************************/
    .contact-form label,
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        display: block !important;
	width: 100%;
	text-align: center;
    }
}
/*===================================================
          Project-specific styles 
===================================================*/
.project-element {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.project-img-placeholder {
    width: 100%;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid #5F256B;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-img-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.project-description {
    padding: 1.5rem;
    text-align: left;
}
.project-description h3 {
    margin-top: 0;
    font-size: 1.75rem;
    color: #FFD700;
}
.project-link {
    margin-top: 1rem;
    text-align: right;
}
.project-link a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid #FFD700;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.project-link a:hover {
    background-color: #FFD700;
    color: #331A40;
}


/*****************************************
   Image Formatting for Blog Posts
*****************************************/
/***************************************************************
 The container ensures the image is centered and has margins
****************************************************************/
.blog-image-container {
    display: inline-block;
    margin: 25px 0; 
    padding: 5px; 
    background-color: #3f2a70; 								/*A subtle background to make the image pop */
    border-radius: 8px; 
}
/***********************************************
	 Styles for the actual image tag
***********************************************/
.blog-image-container img {
    max-width: 100%; 									/* Makes the image fully responsive within its container */
    height: auto; 									/* Maintains the image's aspect ratio */
    display: block; 
    border-radius: 4px; 
}
/**************************************
	Contact Form Styling
**************************************/
.contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #331A40;								/* Dark background */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.form-group {
    display: block !important;
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #FFD700;									/* Gold color for labels */
    float:none;
    text-align: center;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    clear: both;
    width: 100%;
    display: block;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #FFD700 !important;
    border-radius: 4px;
    background-color: #4C265A;
    color: #E0BBE4;
    float:none;
    box-sizing: border-box;								/* Includes padding and border in the element's total width and height */
    font-size: 1.125rem;
    -webkit-appearance: none;
    appearance: none;
}
.contact-form textarea {
    resize: vertical;									/* Allows vertical resizing */
    display: block !important;
    height: 0; /* Ensures it doesn't add extra vertical space */
    content: " ";
}
button.submit-buttton {
    padding-top: 10px;
    padding-bottom: 10px;
}
.submit-button {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    font-size: 1.2;
    background-color: #FFD700;								/* Gold button */
    color: #331A40;									/* Dark text on button */
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.submit-button:hover {
    background-color: #e6c200;								/* Slightly darker gold on hover */
}									
.fit-blondfry {
    object-fit: contain !important; 							/* Forces the entire image to be visible */
    height: auto !important;       							/* Overrides the 100% height, allowing proper scaling */
    max-height:100% !important;
}
@media screen and (max-width: 768px) {
/**************************************************************************
 1. Force the image container to have a minimum visible height on mobile
***************************************************************************/
    .project-img-placeholder {
        min-height: 200px;								/* Adjust this value (e.g., 200px) until it looks right */
        height: auto !important;							/* Ensure height doesn't stretch past max-height */
        max-height: 300px; 								/* Sets an upper limit */
    }
    .project-element:first-child .project-img-placeholder {
	overflow: visible !important;
}
/*************************************************************************
 2. Re-apply the Blondfry fix using the new class (ensures it loads last)
*************************************************************************/
    .fit-blondfry {
        object-fit: contain !important; 
        height: auto !important;
        max-height: 100% !important;
	min-height: 200px;
	width:100% !important; 
    }
}


/***************************************
	Delivery Page Map Styling
****************************************/
.delivery-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}
.delivery-info {
    max-width: 600px;
    margin: 0 auto;
}
.map-container {
    display: flex;
    flex-direction: column;								/* Stacks maps vertically on mobile */
    gap: 20px;
    align-items: center;
}
.delivery-map {
    width: 100%;
    max-width: 500px; 									/* Limits size on large screens for better visual balance */
    height: 300px;									/* CRITICAL: Defined height for map rendering */
    border: 3px solid #5F256B;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.map-container p {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #FFD700;
    text-align: center;
}

/***********************************************
	 Tablet/Desktop Layout for Maps
************************************************/
@media (min-width: 768px) {
    .map-container {
        flex-direction: row;								/* Arranges maps horizontally */
        flex-wrap: wrap; 
        justify-content: space-around;							/* Distributes maps evenly */
    }
    .delivery-map {
        width: 300px;									/* Fixed width for better control in row layout */
        height: 300px;
        margin-bottom: 20px;								/* Add margin below each map */
    }
/************************************************************************
 	Target the text associated with each map to center it
************************************************************************/
    .map-container > p {
        width: 100%;									/* Make the text span the full width of the container for better separation */
        text-align: center;
        margin-top: 0;
        margin-bottom: 5px;
    }
}
/***********************************
	!!END CSS STYLING!!
************************************/

