/* --- General Styles & Brand Colors --- */
:root {
    --vp-navy: #032B44;
    --vp-orange: #FF8200;
    --vp-dark-blue: #1E438A;
    --vp-gray: #C4C4C4;
}

body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--vp-orange);
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
    background-color: #d96f00; /* Darker orange */
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: var(--vp-navy);
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-secondary:hover {
    background-color: var(--vp-dark-blue);
    transform: translateY(-2px);
}
.btn-secondary-gray {
    background-color: #6B7280; /* Tailwind gray-500 */
    color: white;
    transition: background-color 0.3s ease;
}
.btn-secondary-gray:hover {
    background-color: #4B5563; /* Tailwind gray-600 */
}

/* --- Header & Navigation --- */
.nav-link {
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--vp-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.nav-link:hover {
    color: var(--vp-orange);
}
.nav-link:hover::after {
    transform: scaleX(1);
}

/* --- Hero Section --- */
.hero-bg {
    background: linear-gradient(rgba(3, 43, 68, 0.7), rgba(3, 43, 68, 0.7)), url('https://images.unsplash.com/photo-1524368535928-5b5e00ddc76b?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

/* --- General Sections --- */
.section-bg {
    background-color: #f9fafb; /* Tailwind gray-50 */
}

/* --- Interactive Hover Effects --- */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.portfolio-hover img {
    transition: transform 0.4s ease;
}
.portfolio-hover:hover img {
    transform: scale(1.05);
}

/* --- Modals --- */
.modal {
    transition: opacity 0.3s ease-in-out;
}
.modal-content {
    transition: transform 0.3s ease-in-out;
}

/* --- Wedding Form Specific Styles --- */
.form-label {
    @apply block text-sm font-semibold text-gray-700 mb-1;
}
.form-input {
    @apply mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-[#FF8200] focus:border-[#FF8200];
}
.form-checkbox {
     @apply h-4 w-4 text-[#FF8200] focus:ring-[#d96f00] border-gray-300 rounded;
}
.form-radio {
    @apply h-4 w-4 text-[#FF8200] focus:ring-[#d96f00] border-gray-300;
}

/* Tooltip Styles */
.tooltip-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 10;
    bottom: 125%; /* Position above the icon */
    left: 50%;
    margin-left: -110px; /* Use half of the width to center */
    opacity: 0;
    transition: opacity 0.3s;
    font-family: 'Open Sans', sans-serif; /* Use body font */
    font-size: 12px;
    font-weight: normal;
    text-transform: none; /* Override header styles */
    letter-spacing: normal;
}
/* Arrow for the tooltip */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}


/* --- Form Feedback & Errors --- */
.form-feedback {
    display: none;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 500;
}
.form-feedback.success {
    background-color: #dcfce7; /* Green-100 */
    color: #166534; /* Green-800 */
}
.form-feedback.error {
    background-color: #fee2e2; /* Red-100 */
    color: #991b1b; /* Red-800 */
}
.status-success {
    color: #16a34a; /* Green-600 */
    font-weight: bold;
}
.status-error {
    color: #dc2626; /* Red-600 */
    font-weight: bold;
}
.status-info {
    color: #2563eb; /* Blue-600 */
}

