body {
    font-family: "all-round-gothic", sans-serif;
    font-weight: 600;
    background-color: #20282a;
    color: #be8517;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Default Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px; /* Default height */
    background-color: rgba(32, 40, 42, 0.5); /* Increased transparency (60% opaque) */
    backdrop-filter: blur(5px); /* Slightly stronger frosted glass effect */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 1000;
    transition: all 0.4s ease-in-out; /* Smooth transition */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Shrink Effect - Smaller Navbar */
.navbar.shrink {
    height: 70px; /* Smaller height when scrolling */
    background-color: rgba(32, 40, 42, 1); /* Fully opaque for readability */
}

/* Expand Back on Hover */
.navbar.shrink:hover {
    height: 120px; /* Restores original size */
}

/* Reduce logo size on scroll */
.navbar.shrink .logo img {
    height: 60px; /* Reduce logo size */
    transition: height 0.3s ease-in-out;
}

/* Restore logo size on hover */
.navbar.shrink:hover .logo img {
    height: 140px; /* Back to full size */
}

/* Reduce menu font size on scroll */
.navbar.shrink nav a {
    font-size: 14px;
    padding: 8px 12px;
    transition: font-size 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* Restore menu font size on hover */
.navbar.shrink:hover nav a {
    font-size: 16px;
    padding: 10px 15px;
}

.logo {
    display: flex;
    align-items: center;
    margin-top: 25px; /* Adjust this value to lower the logo */
}

.logo img {
    height: 140px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0px 0px 5px #be8517); /* Adds a glowing gold effect */
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar a {
    color: #be8517;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 15px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar a:hover {
    color: #ffffff;
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 10px #be8517); /* Adds a glowing gold effect */
}

.menu-toggle {
    display: none;
    font-size: 32px;
    color: #be8517;
    background: none;
    border: none;
    cursor: pointer;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(32, 40, 42, 0.85), rgba(32, 40, 42, 0.85));
    z-index: 0;
}


.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.gallery-section {
    padding: 50px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center; /* Center the grid content */
    max-width: 1000px;
    margin: 0 auto; /* Center the entire grid */
}

.gallery-item {
    border: 2px solid #be8517;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.1);        /* Scale the item on hover */
    border-color: #ffffff;         /* Change the border color to white */
    border-width: 3px; /* Slightly increase border size instead of scaling */
    box-shadow: 0px 0px 12px rgba(190, 133, 23, 0.9); /* Enhance selected effect */
    transition: none; /* Prevent animation glitches */
    filter: drop-shadow(0px 0px 10px #be8517); /* Adds a glowing gold effect */
}

@media (max-width: 1024px) {
    .navbar nav {
        gap: 10px;
        padding: 5px;
    }
    .navbar a {
        font-size: 14px;
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: center;
        position: relative;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
    }

    .logo {
        margin: 0 auto;
    }

    .navbar nav {
        display: none;
    }

    .navbar.open nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background-color: rgba(32, 40, 42, 0.95);
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .navbar nav a {
        padding: 10px 20px;
        text-align: center;
        border-bottom: 1px solid #be8517;
    }
}

.content-section {
    padding: 20px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer {
color: #be8517;
padding: 20px;
text-align: center;
border-top: 2px solid #be8517;
}

.footer-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

.footer a {
    color: #be8517;          /* Gold color */
    text-decoration: none;   /* Remove underline */
    font-weight: bold;       /* Optional: Make the text bold */
    transition: color 0.3s ease;
}

.footer a:hover {
    border-width: 3px; /* Slightly increase border size instead of scaling */
    color: #ffffff;          /* Change color to white on hover */
    filter: drop-shadow(0px 0px 10px #be8517); /* Adds a glowing gold effect */
}

.social-icons {
font-size: 24px;
margin: 10px 0;
}

.social-icons a {
color: #be8517;
margin: 0 12px;
transition: color 0.3s ease;
}

.social-icons a:hover {
transform: scale(1.1);
color: #ffffff;
filter: drop-shadow(0px 0px 10px #be8517); /* Adds a glowing gold effect */
}

.trustpilot a {
color: #be8517;
font-weight: bold;
text-decoration: none;
}

.trustpilot a:hover {
color: #ffffff;
text-decoration: underline;
border-width: 3px; /* Slightly increase border size instead of scaling */
}
a {
    transition: transform 0.2s ease, color 0.2s ease;
}

a:hover {
    border-width: 3px; /* Slightly increase border size instead of scaling */
    color: #ffffff; /* Optional: Change color on hover */
}
.hover-grow {
    transition: transform 0.2s ease;
}

.hover-grow:hover {
    transform: scale(1.1);
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    align-items: stretch; /* Stretch both containers to the same height */
}

/* Mobile: Move below selection container */
@media (max-width: 768px) {
    .summary-box {
        position: relative; /* Allow it to flow normally */
        right: auto;
        top: auto;
        transform: none;

        width: 90%;
        max-width: 500px;
        margin: 20px auto 0; /* Add space above the summary box */
    }
}

.nav-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.cta-button:hover {
    background-color: #d9a038;
    box-shadow: 0px 0px 14px rgba(190, 133, 23, 1);
    transform: scale(1.05);
}

/* Secondary Button - Transparent Dark */
.cta-button.secondary {
    background-color: rgba(32, 40, 42, 0.7);
    color: #be8517;
}

.cta-button.secondary:hover {
    background-color: #be8517;
    color: #20282a;
}

/* Outline Button - Transparent with Gold Border */
.cta-button.outline {
    background-color: transparent;
    color: #be8517;
}

.cta-button.outline:hover {
    background-color: #be8517;
    color: #20282a;
}

/* Ensure buttons behave like links */
button.cta-button {
    font-family: "all-round-gothic", sans-serif;
    font-weight: 600;
   
}

/* Input Field Styling */
input, textarea, select {
    width: 100%;
    padding: 2px;
    margin: 8px 0;
    background-color: rgba(50, 58, 60, 0.9);
    border: 2px solid #be8517;
    border-radius: 8px;
    color: #be8517;
    font-size: 8px;
}

/* Input Placeholder Color */
input::placeholder, textarea::placeholder {
    color: rgba(190, 133, 23, 0.6);
}

/* Heading Improvements */
.nook-intro h1, .nook-intro h2,
.content-section h1, .content-section h2,
.hero-content h1, .hero-content h2 {
    font-size: 2rem; /* Slightly larger */
    margin-bottom: 10px;
    text-align: center;
}

/* Increase letter spacing for a more premium look */
.nook-intro p,
.content-section p,
.hero-content p {
    letter-spacing: 0.5px;
    font-weight: 500;
}


.hero-spacer {
    height: 120px; /* Adjust based on navbar height */
    background: transparent; /* Keeps it clean */
}

@media (max-width: 768px) {
    .hero-spacer {
        display: none;
    }
}

/* GLOBAL SCROLLBAR (Right-Side Page Scroll) */
::-webkit-scrollbar {
    width: 10px; /* Adjust scrollbar width */
}

::-webkit-scrollbar-track {
    background: rgba(32, 40, 42, 0.8); /* Dark track */
}

::-webkit-scrollbar-thumb {
    background: #be8517; /* Gold thumb */
    border-radius: 12px;
    border: 2px solid rgba(32, 40, 42, 0.85); /* Blends with dark background */
}

::-webkit-scrollbar-thumb:hover {
    background: #e8b04a; /* Lighter gold on hover */
}

/* Firefox Scrollbars */
* {
    scrollbar-color: #be8517 rgba(32, 40, 42, 0.8);
    scrollbar-width: thin;
}

/* Match autofill background color to theme */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px rgba(50, 58, 60, 0.9) inset !important;
    background-color: rgba(50, 58, 60, 0.9) !important;
    color: #be8517 !important;
}

/* Adjust input field text size */
input, textarea, select {
    font-size: 0.8rem;  /* Increase text size */
    padding: 12px;  /* Improve spacing inside inputs */
}
.highlight {
    color: #f9b630; /* Gold color to match branding */
    font-weight: bold;
}

/* Adjusts the entire form layout */
.form-container {
    max-width: 650px; /* Keeps the form easy to read */
    width: 90%; /* Responsive width */
    background-color: rgba(32, 40, 42, 0.4); /* Increased transparency (60% opaque) */
    backdrop-filter: blur(5px); /* Slightly stronger frosted glass efmi-transparent background */
    padding: 30px;
    border-radius: 10px; /* Soft rounded corners */
    margin: 50px auto; /* Provides spacing so no inner scrolling */
    overflow: visible; /* Prevents any hidden overflow */
    z-index: 990;
    color: #be8517;
}

/* Ensures form inputs are properly spaced */
.form-container select, 
.form-container input[type="text"], 
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container input[type="specialRequests"]
 {
    width: 100%; /* Full-width for usability */
    padding: 12px;
    margin-top: 8px;
    border-radius: 5px;
    background: #333;
    color: #be8517;
    z-index: 1100;
}

/* Ensure checkboxes are not stretched */
.form-container input[type="checkbox"] {
    width: auto; /* Prevents full-width stretching */
}

.form-step {
    display: none;
}
#step0 {
    display: block; /* Only show Step 0 on initial load */
}
.form-step.active {
    display: block;
}
.button-container {
    margin-top: 20px;
}

.cta-link {
    color: #be8517; /* Match your gold highlight color */
    font-weight: bold;
    text-decoration: underline; /* Always underlined */
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.cta-link:hover {
    color: #ffffff; /* White on hover */
    text-decoration: underline; /* Keeps underline on hover */
    filter: drop-shadow(0px 0px 10px #be8517); /* Adds a glowing gold effect */
}

.hero-section {
    position: relative;
    min-height: 100vh; /* Ensures hero section covers full screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('pod.webp') center/cover no-repeat;
    background-attachment: fixed;
    color: #be8517;
    text-align: center;
    padding: 10px 10px; /* Adds breathing room */
}

.hero-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0; /* Removed extra padding */
    flex-grow: 1; /* Allows dynamic space adjustment */
}

/* Removes extra space below text */
.nook-intro {
    width: 100%;
    padding: 20px;
    background: transparent;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    margin-bottom: 0; /* Removes gap between intro and CTA */
}

/* Ensures last paragraph doesn’t push the CTA down */
.nook-intro p:last-child {
    padding-bottom: 30px; /* Adjusted from 100px to 30px for better spacing */
}

/* Keeps CTA button closer to the intro text */
.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 0; /* Keeps it naturally positioned */
    left: 0;
    z-index: 3;
    padding-top: 10px; /* Reduces space between text & button */
    padding-bottom: 20px; /* Controls space between button and bottom */
}

/* Adjustments for mobile screens */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        background-attachment: scroll;
    }

    .cta-container {
        padding-top: 5px; /* Further reduces space on mobile */
        padding-bottom: 10px;
    }
}

/* Base CTA Button Style */
.cta-button {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    border: 2px solid #be8517;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 10;
    box-shadow: 0px 0px 15px rgba(190, 133, 23, 0.8);
    cursor: pointer;
    display: inline-block;

}
.nook-options {
    list-style: none;
    padding-left: 0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.nook-options li {
    font-size: 0.9rem;
    line-height: 1.7; /* Improves readability */
    font-weight: 500;
    display: flex;
    align-items: flex-start; /* Aligns bullet and text at the top */
    gap: 10px;
    flex-wrap: wrap;
}

.nook-options li::before {
    content: "◆";
    color: #be8517;
    font-size: 1.0rem;
    flex-shrink: 0;
    margin-top: 4px; /* Aligns bullet perfectly */
}

.nook-options li span {
    display: inline-block;
    max-width: 90%; /* Prevents weird wrapping */
}

.feature-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps everything left-aligned */
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center; /* Ensures icon, h2, and p align neatly */
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
}

.feature-icon {
    flex-shrink: 0;
    width: 35px; /* Slightly increased for better proportion */
    text-align: center;
}

.feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers text block */
    align-items: flex-start;
    flex-grow: 1;
    min-width: 0;
}

.feature-item i {
    font-size: 1.3rem;
    color: #be8517;
}

.feature-text h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px; /* Slightly closer to the paragraph */
    line-height: 1.2;
}

.feature-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    max-width: 420px;
}
@media (max-width: 768px) { 
    .feature-grid {
        flex-direction: column;
        align-items: center; /* Centers content on small screens */
        text-align: center; /* Aligns text under icons */
    }

    .feature-item {
        flex-direction: column; /* Stack icon and text vertically */
        align-items: center; /* Centers everything */
        text-align: center;
        gap: 8px; /* Reduces space for better fit */
    }

    .feature-icon {
        width: auto; /* Removes fixed width */
    }

    .feature-text {
        align-items: center; /* Keeps text centered */
    }

    .feature-text h2 {
        font-size: 1.1rem; /* Adjusts size to match mobile proportions */
        text-align: center;
    }

    .feature-text p {
        font-size: 0.9rem;
        text-align: center;
    }
}
/* Highlighted text for key phrases */
.highlight {
    color: #f4a024; /* Gold/yellow pop */
}

/* Subtle emphasis for softer contrast */
.emphasis {
    color: #d1d1d1; /* Soft light grey */
    font-style: italic;
}

/* Slightly larger intro & closing text */
.intro-text, .closing-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Section styling for better readability */
.story-section {
    margin-top: 40px;
}

/* Icons slightly bigger */
.story-section h2 i {
    font-size: 1.3rem;
    margin-right: 8px;
    color: #f4a024;
}

/* Custom Checkbox Styling */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;  /* Standardized checkbox size */
    height: 22px;
    border: 2px solid #be8517; /* Gold border */
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    display: inline-flex; /* Prevents stretching */
    align-items: center;
    justify-content: center;
    vertical-align: middle; /* Keeps checkboxes in line with text */
}

/* Checked state */
input[type="checkbox"]:checked {
    background-color: #be8517;
    border-color: #be8517;
}

/* Checkmark */
input[type="checkbox"]:checked::before {
    content: "✔";
    color: black; /* Ensures contrast */
    font-size: 14px; /* Properly sized checkmark */
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hover Effect */
input[type="checkbox"]:hover {
    filter: drop-shadow(0px 0px 8px #be8517);
}

/* Fix Spacing & Alignment */
.radio-option {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between checkbox and text */
    margin-bottom: 10px;
}

/* Ensure label text remains aligned */
.radio-option label {
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    color: #be8517;
}

/* Prevent checkboxes from stretching */
.radio-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* Make sure checkboxes don't expand */
.radio-container .radio-option {
    width: auto; /* Prevents full-width stretching */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.care-plan-section {
    text-align: center;
    padding: 50px 20px;
}

.care-plan-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.care-plan-card {
    background-color: rgba(32, 40, 42, 0.9);
    border: 2px solid #be8517;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.care-plan-card h3 {
    font-size: 1.5rem;
    color: #be8517;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f9b630;
}

.small-text {
    font-size: 0.9rem;
    color: #ccc;
}

.care-plan-card ul {
    list-style: none;
    padding: 0;
}

.care-plan-card li {
    padding: 8px 0;
    font-size: 1rem;
}

.care-plan-card.popular {
    border: 3px solid #f9b630;
    box-shadow: 0 0 15px rgba(249, 182, 48, 0.5);
    transform: scale(1.05);
}

.care-plan-card:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(249, 182, 48, 0.7);
}

.cta-container {
    margin-top: 30px;
}
