/* Custom CSS for Amoria Dating Site */

/* Global Styles */
:root {
    --amoria-primary: #E91E63; /* Deep Pink */
    --amoria-secondary: #FF4081; /* Brighter Pink */
    --amoria-accent: #F48FB1; /* Light Pink */
    --amoria-white: #FFFFFF;
    --amoria-red: #D32F2F; /* Red */
    --amoria-dark: #212529; /* Dark for text on light backgrounds */
    --amoria-text-light: #F8F9FA;
    --amoria-text-dark: #343A40;
    --amoria-bg-light: #FFF0F5; /* Light pinkish background */
    --amoria-bg-dark: #2C001E; /* Dark background for contrast */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--amoria-text-dark);
    line-height: 1.6;
    background-color: var(--amoria-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--amoria-dark);
}

a {
    color: var(--amoria-primary);
    text-decoration: none;
}

a:hover {
    color: var(--amoria-secondary);
    text-decoration: none;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none !important; /* Ensure no underline */
}

.amoria-btn-primary {
    background-color: var(--amoria-primary);
    border-color: var(--amoria-primary);
    color: var(--amoria-white);
}

.amoria-btn-primary:hover {
    background-color: var(--amoria-secondary);
    border-color: var(--amoria-secondary);
    color: var(--amoria-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.amoria-btn-outline:hover {
    background-color: var(--amoria-primary);
    color: var(--amoria-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.amoria-btn-light {
    background-color: var(--amoria-white);
    border-color: var(--amoria-white);
    color: var(--amoria-primary);
}

.amoria-btn-light:hover {
    background-color: var(--amoria-accent);
    border-color: var(--amoria-accent);
    color: var(--amoria-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.amoria-btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: var(--amoria-white);
}

.amoria-btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: var(--amoria-white);
}

/* Navbar */
.amoria-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    z-index: 1030;
}

.amoria-logo {
    height: 40px;
}

.amoria-header .navbar-nav .nav-link {
    color: var(--amoria-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.amoria-header .navbar-nav .nav-link:hover {
    color: var(--amoria-primary);
}

.navbar-toggler {
    border-color: var(--amoria-primary);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28233, 30, 99, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.amoria-hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('photos/pics/hero-couple_6.jpg');
    background-size: cover;
    background-position: center;
    color: var(--amoria-white);
    position: relative;
    overflow: hidden;
}

.amoria-hero h1 {
    font-size: 5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: var(--amoria-white);
}

.amoria-hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styling */
.amoria-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.amoria-section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--amoria-dark);
}
.carousel-control-next-icon, .carousel-control-prev-icon{
     filter: brightness(1000%)!important;
}
.amoria-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--amoria-primary);
    border-radius: 2px;
}
@media (max-width:575px) {
    .carousel-control-next, .carousel-control-prev{
        display: none;
    }
}
.amoria-bg-light {
    background-color: var(--amoria-bg-light);
}

.amoria-bg-dark {
    background-color: var(--amoria-bg-dark);
}

.amoria-bg-primary {
    background-color: var(--amoria-primary);
}

/* Cards */
.amoria-card {
    background-color: var(--amoria-white);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.amoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.amoria-card-title {
    color: var(--amoria-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.amoria-icon-lg {
    font-size: 3.5rem;
    color: var(--amoria-primary);
}

.amoria-icon-md {
    font-size: 2.5rem;
    color: var(--amoria-primary);
}

.amoria-icon-sm {
    font-size: 1.25rem;
    color: var(--amoria-primary);
}

/* User Mini-Cards */
.amoria-user-card {
    background-color: var(--amoria-white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.amoria-user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.amoria-avatar-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--amoria-primary);
}

/* Security Section */
.amoria-security-list li {
    color: var(--amoria-text-dark);
}

.amoria-security-list strong {
    color: var(--amoria-primary);
}

/* Testimonials Slider */
.amoria-testimonial-card {
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--amoria-white);
}

.amoria-testimonial-card p {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--amoria-text-light);
}

.amoria-testimonial-card h5 {
    color: var(--amoria-white);
    margin-top: 1rem;
}

.amoria-avatar-lg {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid var(--amoria-secondary);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(100%); /* Makes icons white */
}

/* Footer */
.amoria-footer {
    background-color: var(--amoria-bg-dark);
    color: var(--amoria-text-light);
    padding: 3rem 0;
    text-align: center;
}

.amoria-footer p {
    color: var(--amoria-text-light);
    margin-bottom: 0.5rem;
}

.amoria-logo-footer {
    height: 35px;
    margin-bottom: 1rem;
}

.amoria-footer-links .list-inline-item a {
    color: var(--amoria-accent);
    font-weight: 400;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.amoria-footer-links .list-inline-item a:hover {
    color: var(--amoria-primary);
}

/* Modals */
.amoria-modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInModal 0.3s ease-out;
}

.amoria-modal-header {
    background-color: var(--amoria-primary);
    color: var(--amoria-white);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: none;
}

.amoria-modal-header .modal-title {
    color: var(--amoria-white);
}

.amoria-btn-close {
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.amoria-btn-close:hover {
    opacity: 1;
}

.form-label {
    font-weight: 500;
    color: var(--amoria-dark);
}

.form-control, .form-select {
    border-radius: 8px;
    border-color: #dee2e6;
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--amoria-primary);
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

/* Modal Animations */
.modal.fade .modal-dialog {
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

/* Success Message Modal */
.amoria-modal-success {
    background-color: var(--amoria-white);
    border-radius: 15px;
    border: 2px solid #28a745;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.amoria-success-icon {
    font-size: 4rem;
    color: #28a745;
}

/* Moderation Message Modal */
.amoria-modal-moderation {
    background-color: var(--amoria-white);
    border-radius: 15px;
    border: 2px solid #6c757d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.amoria-moderation-icon {
    font-size: 4rem;
    color: #6c757d;
}

.amoria-modal-title {
    color: var(--amoria-dark);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .amoria-header .navbar-nav .nav-item {
        margin-left: 0 !important;
    }
    .amoria-header .navbar-nav .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .amoria-hero h1 {
        font-size: 3.5rem;
    }
    .amoria-hero p {
        font-size: 1.1rem;
    }
    .amoria-section-title {
        font-size: 2rem;
    }
    .amoria-testimonial-card {
        padding: 2rem 1rem;
    }
    .amoria-testimonial-card p {
        font-size: 1rem;
    }
}/* New styles for .rightsCloudWrap and its children */

/* Wrapper for content, providing spacing and max-width for readability */
.rightsCloudWrap {
    padding-top: 60px; /* Top padding for the content section */
    padding-bottom: 60px; /* Bottom padding for the content section */
    padding-left: 15px; /* Horizontal padding for smaller screens */
    padding-right: 15px; /* Horizontal padding for smaller screens */
    max-width: 960px; /* Limits content width for better readability on large screens */
    margin-left: auto; /* Centers the content wrapper */
    margin-right: auto; /* Centers the content wrapper */
    color: var(--amoria-text-dark); /* Default text color for this section */
}

/* Responsive horizontal padding for larger screens */
@media (min-width: 768px) {
    .rightsCloudWrap {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Heading 1 styles within .rightsCloudWrap */
.rightsCloudWrap h1 {
    font-size: 2.2rem; /* Moderate font size for main headings */
    line-height: 1.2; /* Line height for readability */
    margin-bottom: 1.5rem; /* Space below the heading */
    color: var(--amoria-dark); /* Dark color for headings */
}

/* Heading 2 styles within .rightsCloudWrap */
.rightsCloudWrap h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--amoria-dark);
}

/* Heading 3 styles within .rightsCloudWrap */
.rightsCloudWrap h3 {
    font-size: 1.5rem; /* Standard heading size */
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--amoria-dark);
}

/* Heading 4 styles within .rightsCloudWrap */
.rightsCloudWrap h4 {
    font-size: 1.2rem; /* Smaller heading for sub-sections */
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: var(--amoria-dark);
}

/* Heading 5 styles within .rightsCloudWrap */
.rightsCloudWrap h5 {
    font-size: 1.1rem; /* Smallest heading, often used for minor titles */
    line-height: 1.5;
    margin-bottom: 0.7rem;
    color: var(--amoria-dark);
}

/* Paragraph styles within .rightsCloudWrap */
.rightsCloudWrap p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Generous line height for readability */
    margin-bottom: 1rem; /* Space below each paragraph */
    color: var(--amoria-text-dark);
}

/* Unordered list styles within .rightsCloudWrap */
.rightsCloudWrap ul {
    list-style-type: disc; /* Default disc bullets */
    padding-left: 25px; /* Indentation for list items */
    margin-bottom: 1rem; /* Space below the list */
    color: var(--amoria-text-dark);
}

/* List item styles within .rightsCloudWrap */
.rightsCloudWrap li {
    font-size: 1rem; /* Consistent font size for list items */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    color: var(--amoria-text-dark);
}

/* You might also want to add styles for ordered lists (ol) if needed: */
/*
.rightsCloudWrap ol {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 1rem;
    color: var(--amoria-text-dark);
}
*/
