/* Main CSS for Tattoo Studio - Dark Theme */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', serif;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ffffff;
    /*force uppercase*/
    text-transform: uppercase;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 0.8rem 0;
    border-bottom: none;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
}


/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/etc/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    color: white;
    margin-bottom: 4rem;
    position: relative;
    overflow: visible;
    z-index: 1; /* Lower z-index than header */
    margin-top: 10px; /* Add a small gap between header and hero */
}

.hero-tigers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tiger {
    position: absolute;
    height: 250px;
    width: auto;
    top: 50%;
    transform: translateY(-5%);
}

.tiger-left {
    left: 5px;
}

.tiger-right {
    right: 5px;
}

@media (max-width: 1200px) {
    .tiger {
        height: 150px;
    }
    
    .tiger-left {
        left: -40px;
    }
    
    .tiger-right {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .tiger {
        height: 100px;
    }
    
    .tiger-left {
        left: -20px;
    }
    
    .tiger-right {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .tiger {
        display: none;
    }
}


.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #c0392b;
    border: 2px solid #c0392b;
}

.btn-primary:hover {
    background-color: transparent;
    color: #c0392b;
}

/* Featured Work Section */
.featured-work {
    padding: 4rem 8%;
    text-align: center;
    background-color: #1a1a1a;
    margin: 0 auto;
    max-width: 1400px;
}

.featured-work h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-work h2:after {
    content: "";
    display: block;
    height: 3px;
    width: 100px;
    background-color: #c0392b;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.featured-work .container {
    padding: 0 40px;
    width: 90%;
}

/* Gallery */
.portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.portfolio-item {
    height: 300px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background-color: #111111;
    color: #dddddd;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .featured-work h2 {
        font-size: 2rem;
        padding: 3rem 2%; /* Further reduce padding on smaller screens */
    }
}

@media (max-width: 768px) {
    .featured-work {
        padding: 4rem 4%; /* Reduce side padding on mobile */
    }
    
    .featured-work .container {
        padding: 0 15px; /* Reduce container padding */
        width: 100%; /* Full width container on mobile */
    }
    
    .portfolio {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px; /* Smaller gap on mobile */
    }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo a {
  text-decoration: none;
  color: white;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 900;
    letter-spacing: 1.5px;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background-color: var(--primary);
}

.main-nav {
    position: relative;
    z-index: 101; 
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 20px;
}

.nav-list a {
    font-weight: 600;
    padding: 0.8rem 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
  color: #c0392b;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  z-index: 102;
  padding: 10px 0;
  border: 1px solid #333;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  margin: 0;
  padding: 5px 20px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .main-nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* Added styles for dark theme */
a, a:visited {
  color: #c0392b;
  text-decoration: none;
}

a:hover {
  color: #e74c3c;
  text-decoration: none;
}

.row {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.cta {
  background-color: #222222;
}

a.cta-button {
  color: #dddddd;
  border: solid 2px #dddddd;
}

a.cta-button:hover {
  background-color: rgba(255,255,255,0.1);
}

.white-text a.cta-button:hover {
  background-color: #c0392b;
  border-color: #c0392b;
  color: #ffffff;
}

.solid-button a.cta-button:hover {
  color: #fff;
  background-color: #c0392b;
  border-color: #c0392b;
}

/* Simple social icons overrides */
.simple-social-icons ul li a {
  background-color: rgba(255,255,255,0.1) !important;
  color: #dddddd !important;
}

.simple-social-icons ul li a:hover {
  background-color: #c0392b !important;
  color: #ffffff !important;
}

input, select, textarea {
  background-color: #333;
  color: #f0f0f0;
  border: 1px solid #444;
}

::-webkit-input-placeholder {
  color: #999999;
}

/* Fix for book appointment button text color */
.btn-primary {
    background-color: #c0392b;
    border: 2px solid #c0392b;
    color: white; /* Ensure text is white */
}

.btn-outline {
    border: 2px solid var(--primary);
    color: white;
    background-color: transparent;
    padding: 10px 25px;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Fix for navigation links */
.nav-list a {
    color: #dddddd; /* Reset all nav links to light color */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-list a:hover,
.nav-list .current-menu-item a {
    color: #c0392b; /* Only change color on hover or active state */
}

/* Enhanced styling for cooler design */
/* Updated color scheme */
:root {
    --primary: #c0392b;
    --primary-hover: #e74c3c;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --border: #333;
    --text: #f0f0f0;
    --accent: #c0392b;
}

body {
    background-color: var(--dark-bg);
    font-family: 'PT Sans', sans-serif;
    color: var(--text);
}

@media (max-width: 768px) {
    .portfolio-item {
        background-size: cover;
        background-position: center center;
        width: 100%; 
        height: 200px; /* Adjust height for mobile */
    }
}

@media (max-width: 576px) {
    .portfolio-item {
        height: 180px; /* Slightly smaller height for very small screens */
    }
}

/* Modernized header */
.site-header {
    position: relative;
    z-index: 200; /* Increase z-index to be higher than hero */
    padding: 0.8rem 0;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Enhanced hero section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 10px
    );
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.hero-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-subtitle {
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 1.5rem auto;
}

/* Improve section headers */
section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

section h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 20%;
}

/* Stylish buttons */
.btn {
    border-radius: 0;
    padding: 12px 35px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-hover);
    transition: all 0.4s;
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn-primary:hover {
    color: white;
    border-color: var(--primary-hover);
    background-color: transparent;
}

/* Enhanced portfolio items */
.portfolio {
    gap: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item:hover::after {
    opacity: 1;
}

/* Additional cool features */
.featured-work h2 {
    font-size: 2.8rem;
    letter-spacing: 2px;
}

.featured-work h2:after {
    height: 4px;
    background: linear-gradient(to right, var(--primary), transparent);
    width: 150px;
}

/* Dropdown refinements */
.dropdown-content {
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    display: block;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Add background patterns for more texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23333' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Improved mobile menu */
@media (max-width: 768px) {
  .main-nav, .header-cta {
    display: none;
  }
  
  .main-nav.active, .header-cta.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    padding: 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  
  .main-nav.active .nav-list {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-list li {
    margin: 10px 0;
  }
  
  .header-cta.active {
    padding-top: 0;
    text-align: center;
  }
  
  .menu-toggle {
    display: block;
    z-index: 100;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .menu-toggle span {
    transition: all 0.3s ease;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background-color: rgba(0,0,0,0.2);
    margin-top: 10px;
  }
}

body::before {
    z-index: -1;
}

.hero {
    position: relative;
    z-index: 1;
}

/* Reviews Section */
.testimonials {
    padding: 4rem 8%;
    text-align: center;
    background-color: #121212;
    margin: 4rem auto;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    color: #ffffff;
}

.testimonials h2:after {
    content: "";
    display: block;
    height: 3px;
    width: 100px;
    background-color: #c0392b;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.review-item {
    padding: 20px 10px;
}

.review-rating {
    color: #ffc20e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-blurb {
    position: relative;
    background: #1e1e1e;
    color: #f0f0f0;
    box-shadow: 0.5rem 0.5rem 0 rgba(192, 57, 43, 0.3);
    border-radius: .25rem;
    transition: all 0.3s ease;
    height: 100%;
    padding: 2rem;
    margin-bottom: 1rem;
}

.testimonial-blurb:hover {
    transform: translateY(-5px);
}

.blurb-review {
    font-style: italic;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    letter-spacing: 0.02rem;
    padding: 0 1rem 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blurb-review::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -2rem;
    left: -0.5rem;
    opacity: 0.2;
    color: #c0392b;
    font-family: Georgia, serif;
}

.review-source {
    color: #c0392b;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 1rem;
    display: block;
}

.reviewer-name {
    font-weight: 500;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #dddddd;
}

/* Slick slider modifications for reviews */
.reviews-slider .slick-prev,
.reviews-slider .slick-next {
    background-color: #1a1a1a;
    color: #c0392b;
    z-index: 10;
}

.reviews-slider .slick-dots li button:before {
    color: #c0392b;
    opacity: 0.5;
}

.reviews-slider .slick-dots li.slick-active button:before {
    color: #c0392b;
    opacity: 1;
}

/* Page Navigator (Scroll Indicator) */
.page-navigator {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.page-navigator ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-navigator li {
    width: 16px; 
    height: 16px; 
    margin: 32px 0; 
    position: relative;
}

.page-navigator .dot {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.page-navigator li.active .dot {
    transform: scale(1.5);
    background-color: #c0392b;
    box-shadow: 0 0 10px rgba(192, 57, 43, 0.5);
}

.page-navigator .tooltip {
    position: absolute;
    right: 30px;
    top: 0;
    background-color: #c0392b;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-navigator a:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Add a line between dots for visual interest */
.page-navigator li:not(:last-child)::after {
    content: '';
    display: block;
    height: 24px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 4px; /* center the line */
    bottom: -24px;
}

@media (max-width: 768px) {
    .page-navigator {
        right: 15px;
    }
    
    .page-navigator .tooltip {
        display: none; 
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: #c0392b;
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Footer Styles */
.footer-container {
    background-color: #111111;
    color: #dddddd;
    padding: 0;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 5% 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    letter-spacing: 1.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: #c0392b;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #aaaaaa;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #dddddd;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #c0392b;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-info, .hours-list, .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #aaaaaa;
}

.contact-info i {
    margin-right: 10px;
    color: #c0392b;
    font-size: 1rem;
    margin-top: 3px;
}

.contact-info a {
    color: #aaaaaa;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #c0392b;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #aaaaaa;
}

.hours-list .day {
    font-weight: 600;
    min-width: 100px;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: #aaaaaa;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-nav a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #c0392b;
    transition: transform 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.footer-nav a:hover::before {
    transform: translateX(5px);
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 1.5rem 5%;
    text-align: center;
    border-top: 1px solid #222222;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: #888888;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #666666;
}

.footer-disclaimer a {
    color: #888888;
    transition: color 0.3s ease;
}

.footer-disclaimer a:hover {
    color: #c0392b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .hours-list .day {
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .contact-info i {
        margin-right: 5px;
    }
    
    .hours-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav a {
        padding-left: 0;
    }
    
    .footer-nav a::before {
        display: none;
    }
    
    .footer-nav a:hover {
        padding-left: 0;
    }
}

/* Contact Page Styles */
.page-header {
    text-align: center;
    padding: 6rem 0 3rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.page-header h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background-color: #c0392b;
}

.page-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    font-style: italic;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Contact Information Styles */
.contact-info-container {
    position: relative;
}

.contact-info-box {
    background-color: #1e1e1e;
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.contact-info-box h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-box h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c0392b;
}

.info-block {
    display: flex;
    margin-bottom: 2rem;
}

.info-block i {
    font-size: 1.8rem;
    color: #c0392b;
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.info-block p {
    margin-bottom: 0.3rem;
    color: #aaaaaa;
}

.location-note {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #888888;
}

.hours-grid {
    display: grid;
    grid-template-columns: 100px 1fr;
    row-gap: 0.3rem;
    margin-bottom: 1rem;
}

.day {
    font-weight: 600;
    color: #dddddd;
}

.time {
    color: #aaaaaa;
}

.hours-note {
    font-style: italic;
    font-size: 0.9rem;
    color: #888888;
}

.payment-methods {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #aaaaaa;
}

.social-media-contact {
    margin-top: 2rem;
}

.social-media-contact h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

/* Contact Form Styles */
.contact-form-container {
    position: relative;
}

.contact-form-box {
    background-color: #1e1e1e;
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.contact-form-box h2 {
    margin-bottom: 1.2rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-box h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c0392b;
}

.form-description {
    margin-bottom: 1.5rem;
    color: #aaaaaa;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #dddddd;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: #333333;
    border: 1px solid #444444;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #c0392b;
    box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.25);
}

.form-note {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #777777;
    font-style: italic;
}

.form-button {
    text-align: right;
}

.recaptcha-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #666666;
    text-align: center;
}

.recaptcha-note a {
    color: #888888;
    text-decoration: underline;
}

.recaptcha-note a:hover {
    color: #c0392b;
}

/* Map Section */
.map-section {
    margin-bottom: 4rem;
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.static-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-info-box, .contact-form-box {
        padding: 1.5rem;
    }
    
    .info-block {
        flex-direction: column;
    }
    
    .info-block i {
        margin-bottom: 0.5rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        row-gap: 0.2rem;
    }
    
    .day {
        font-weight: 700;
        margin-top: 0.5rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Gallery Page Styles */
.portfolio-section {
    padding: 2rem 0 5rem;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background-color: #1e1e1e;
    border: 1px solid #333;
    color: #dddddd;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #c0392b;
    color: white;
    border-color: #c0392b;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background-color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.portfolio-item a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-item-info {
    transform: translateY(0);
}

.portfolio-item-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.portfolio-item-info p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.portfolio-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.portfolio-loading i {
    font-size: 2rem;
    color: #c0392b;
    margin-bottom: 1rem;
}

.portfolio-loadmore {
    text-align: center;
    margin-top: 2rem;
}

.cta-section {
    background-color: #1e1e1e;
    padding: 5rem 0;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-size: 1.1rem;
    font-weight: bold;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-closeContainer {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-filters {
        gap: 0.7rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .portfolio-item img {
        height: 250px;
    }
    
    .portfolio-item-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .portfolio-item img {
        height: 180px;
    }
    
    .portfolio-item-info {
        padding: 1rem;
    }
    
    .portfolio-item-info h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .portfolio-item-info p {
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 200px;
        margin: 0 auto;
    }
}