/* Custom Styles for SugarDaddyUK City Pages */

/* General Container for Content */
.london-content-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Styling */
.london-section {
    margin-bottom: 60px;
    padding: 0 15px;
}

.london-section h2 {
    font-family: 'Lexend', sans-serif;
    color: #e85a4f;
    margin-bottom: 25px;
    font-weight: 600;
}

.london-section h3 {
    font-family: 'Lexend', sans-serif;
    color: #232323;
    margin-bottom: 20px;
    font-weight: 500;
}

.london-section p {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.london-section ul {
    list-style-type: none;
    padding-left: 0;
}

.london-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

.london-section ul li:before {
    content: '•';
    color: #e85a4f;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Table Styling */
.london-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.london-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Jost', sans-serif;
    background-color: #fff;
}

.london-table th, .london-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.london-table th {
    background-color: #e85a4f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.london-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.london-table tr:hover {
    background-color: #f1f1f1;
}

/* Image Styling */
.london-image-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.london-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.london-image-container img:hover {
    transform: scale(1.02);
}

/* Two Column Layout */
.london-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.london-col-text {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.london-col-image {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

/* Image alignment alternatives */
.london-row-reverse {
    flex-direction: row-reverse;
}

/* Responsive Grid for Gallery/Spots */
.london-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.london-grid-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.london-grid-item:hover {
    transform: translateY(-5px);
}

.london-grid-image {
    height: 200px;
    overflow: hidden;
}

.london-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.london-grid-content {
    padding: 20px;
}

.london-grid-content h4 {
    color: #e85a4f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Profile Creation Steps */
.london-step {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #e85a4f;
}

.london-step h4 {
    color: #232323;
    margin-bottom: 10px;
}

/* Call to Action */
.london-cta {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
    border-radius: 10px;
    margin-top: 40px;
}

.london-cta h2 {
    color: #e85a4f;
    margin-bottom: 20px;
}

.london-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e85a4f;
    color: #fff !important;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.london-btn:hover {
    background-color: #c6261a;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .london-row {
        flex-direction: column;
    }
    
    .london-row-reverse {
        flex-direction: column;
    }
    
    .london-col-image {
        margin-bottom: 30px;
    }
    
    .london-content-container {
        padding: 40px 0;
    }
}

/* Manchester Styles */

/* General Container for Content */
.manchester-content-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Styling */
.manchester-section {
    margin-bottom: 60px;
    padding: 0 15px;
}

.manchester-section h2 {
    font-family: 'Lexend', sans-serif;
    color: #e85a4f;
    margin-bottom: 25px;
    font-weight: 600;
}

.manchester-section h3 {
    font-family: 'Lexend', sans-serif;
    color: #232323;
    margin-bottom: 20px;
    font-weight: 500;
}

.manchester-section p {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.manchester-section ul {
    list-style-type: none;
    padding-left: 0;
}

.manchester-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

.manchester-section ul li:before {
    content: '•';
    color: #e85a4f;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Table Styling */
.manchester-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.manchester-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Jost', sans-serif;
    background-color: #fff;
}

.manchester-table th, .manchester-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.manchester-table th {
    background-color: #e85a4f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.manchester-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.manchester-table tr:hover {
    background-color: #f1f1f1;
}

/* Image Styling */
.manchester-image-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.manchester-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.manchester-image-container img:hover {
    transform: scale(1.02);
}

/* Two Column Layout */
.manchester-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.manchester-col-text {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.manchester-col-image {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

/* Image alignment alternatives */
.manchester-row-reverse {
    flex-direction: row-reverse;
}

/* Responsive Grid for Gallery/Spots */
.manchester-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.manchester-grid-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.manchester-grid-item:hover {
    transform: translateY(-5px);
}

.manchester-grid-image {
    height: 200px;
    overflow: hidden;
}

.manchester-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manchester-grid-content {
    padding: 20px;
}

.manchester-grid-content h4 {
    color: #e85a4f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Profile Creation Steps */
.manchester-step {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #e85a4f;
}

.manchester-step h4 {
    color: #232323;
    margin-bottom: 10px;
}

/* Call to Action */
.manchester-cta {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
    border-radius: 10px;
    margin-top: 40px;
}

.manchester-cta h2 {
    color: #e85a4f;
    margin-bottom: 20px;
}

.manchester-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e85a4f;
    color: #fff !important;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.manchester-btn:hover {
    background-color: #c6261a;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .manchester-row {
        flex-direction: column;
    }
    
    .manchester-row-reverse {
        flex-direction: column;
    }
    
    .manchester-col-image {
        margin-bottom: 30px;
    }
    
    .manchester-content-container {
        padding: 40px 0;
    }
}

/* Edinburgh Styles */

/* General Container for Content */
.edinburgh-content-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Styling */
.edinburgh-section {
    margin-bottom: 60px;
    padding: 0 15px;
}

.edinburgh-section h2 {
    font-family: 'Lexend', sans-serif;
    color: #e85a4f;
    margin-bottom: 25px;
    font-weight: 600;
}

.edinburgh-section h3 {
    font-family: 'Lexend', sans-serif;
    color: #232323;
    margin-bottom: 20px;
    font-weight: 500;
}

.edinburgh-section p {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.edinburgh-section ul {
    list-style-type: none;
    padding-left: 0;
}

.edinburgh-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

.edinburgh-section ul li:before {
    content: '•';
    color: #e85a4f;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Table Styling */
.edinburgh-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.edinburgh-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Jost', sans-serif;
    background-color: #fff;
}

.edinburgh-table th, .edinburgh-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.edinburgh-table th {
    background-color: #e85a4f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.edinburgh-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.edinburgh-table tr:hover {
    background-color: #f1f1f1;
}

/* Image Styling */
.edinburgh-image-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.edinburgh-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.edinburgh-image-container img:hover {
    transform: scale(1.02);
}

/* Two Column Layout */
.edinburgh-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.edinburgh-col-text {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.edinburgh-col-image {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

/* Image alignment alternatives */
.edinburgh-row-reverse {
    flex-direction: row-reverse;
}

/* Responsive Grid for Gallery/Spots */
.edinburgh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.edinburgh-grid-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.edinburgh-grid-item:hover {
    transform: translateY(-5px);
}

.edinburgh-grid-image {
    height: 200px;
    overflow: hidden;
}

.edinburgh-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edinburgh-grid-content {
    padding: 20px;
}

.edinburgh-grid-content h4 {
    color: #e85a4f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Profile Creation Steps */
.edinburgh-step {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #e85a4f;
}

.edinburgh-step h4 {
    color: #232323;
    margin-bottom: 10px;
}

/* Call to Action */
.edinburgh-cta {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
    border-radius: 10px;
    margin-top: 40px;
}

.edinburgh-cta h2 {
    color: #e85a4f;
    margin-bottom: 20px;
}

.edinburgh-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e85a4f;
    color: #fff !important;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.edinburgh-btn:hover {
    background-color: #c6261a;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .edinburgh-row {
        flex-direction: column;
    }
    
    .edinburgh-row-reverse {
        flex-direction: column;
    }
    
    .edinburgh-col-image {
        margin-bottom: 30px;
    }
    
    .edinburgh-content-container {
        padding: 40px 0;
    }
}

/* Glasgow Styles */

/* General Container for Content */
.glasgow-content-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Styling */
.glasgow-section {
    margin-bottom: 60px;
    padding: 0 15px;
}

.glasgow-section h2 {
    font-family: 'Lexend', sans-serif;
    color: #e85a4f;
    margin-bottom: 25px;
    font-weight: 600;
}

.glasgow-section h3 {
    font-family: 'Lexend', sans-serif;
    color: #232323;
    margin-bottom: 20px;
    font-weight: 500;
}

.glasgow-section p {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.glasgow-section ul {
    list-style-type: none;
    padding-left: 0;
}

.glasgow-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

.glasgow-section ul li:before {
    content: '•';
    color: #e85a4f;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Table Styling */
.glasgow-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.glasgow-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Jost', sans-serif;
    background-color: #fff;
}

.glasgow-table th, .glasgow-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.glasgow-table th {
    background-color: #e85a4f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.glasgow-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.glasgow-table tr:hover {
    background-color: #f1f1f1;
}

/* Image Styling */
.glasgow-image-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.glasgow-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.glasgow-image-container img:hover {
    transform: scale(1.02);
}

/* Two Column Layout */
.glasgow-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.glasgow-col-text {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.glasgow-col-image {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

/* Image alignment alternatives */
.glasgow-row-reverse {
    flex-direction: row-reverse;
}

/* Responsive Grid for Gallery/Spots */
.glasgow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.glasgow-grid-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.glasgow-grid-item:hover {
    transform: translateY(-5px);
}

.glasgow-grid-image {
    height: 200px;
    overflow: hidden;
}

.glasgow-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glasgow-grid-content {
    padding: 20px;
}

.glasgow-grid-content h4 {
    color: #e85a4f;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Profile Creation Steps */
.glasgow-step {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #e85a4f;
}

.glasgow-step h4 {
    color: #232323;
    margin-bottom: 10px;
}

/* Call to Action */
.glasgow-cta {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
    border-radius: 10px;
    margin-top: 40px;
}

.glasgow-cta h2 {
    color: #e85a4f;
    margin-bottom: 20px;
}

.glasgow-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e85a4f;
    color: #fff !important;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.glasgow-btn:hover {
    background-color: #c6261a;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .glasgow-row {
        flex-direction: column;
    }
    
    .glasgow-row-reverse {
        flex-direction: column;
    }
    
    .glasgow-col-image {
        margin-bottom: 30px;
    }
    
    .glasgow-content-container {
        padding: 40px 0;
    }
}

/* Birmingham Page Styles */
.birmingham-content-container {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.birmingham-section {
    margin-bottom: 60px;
    padding: 0 15px;
}

.birmingham-section h2 {
    font-family: 'Lexend', sans-serif;
    color: #e85a4f;
    margin-bottom: 25px;
    font-weight: 600;
}

.birmingham-section h3 {
    font-family: 'Lexend', sans-serif;
    color: #232323;
    margin-bottom: 20px;
    font-weight: 500;
}

.birmingham-section p {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.birmingham-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.birmingham-col-text {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.birmingham-col-image {
    flex: 1;
    min-width: 300px;
    padding: 0 15px;
}

.birmingham-row-reverse {
    flex-direction: row-reverse;
}

.birmingham-image-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.birmingham-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.birmingham-image-container img:hover {
    transform: scale(1.02);
}

/* Table Styles */
.birmingham-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.birmingham-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Jost', sans-serif;
    background-color: #fff;
}

.birmingham-table th, 
.birmingham-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.birmingham-table th {
    background-color: #e85a4f;
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.birmingham-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.birmingham-table tr:hover {
    background-color: #f1f1f1;
}

/* List/Step Styles */
.birmingham-section ul {
    list-style: none;
    padding: 0;
}

.birmingham-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

.birmingham-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: -5px;
    color: #e85a4f;
    font-size: 1.5em;
}

.birmingham-step {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #e85a4f;
}

.birmingham-step h4 {
    color: #232323;
    margin-bottom: 10px;
}

/* CTA Styles */
.birmingham-cta {
    text-align: center;
    padding: 60px 20px;
    background: #f4f4f4;
    border-radius: 10px;
    margin-top: 40px;
}

.birmingham-cta h2 {
    color: #e85a4f;
    margin-bottom: 20px;
}

.birmingham-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e85a4f;
    color: #fff !important;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

.birmingham-btn:hover {
    background-color: #c6261a;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .birmingham-row {
        flex-direction: column;
    }
    
    .birmingham-row-reverse {
        flex-direction: column;
    }
    
    .birmingham-col-image {
        margin-bottom: 30px;
    }

    .birmingham-content-container {
        padding: 40px 0;
    }
}
