/*
Theme Name: DasStudio
Theme URI: https://dasstudio.mk
Author: Your Name
Author URI: https://dasstudio.mk
Description: Architectural design studio with models for modern residential and commercial engineering and planning, interior design and arrangement, and custom made furniture
Version: 1.0.11
Requires at least: 6.0
Tested up to: 6.8.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: https://dasstudio.mk
*/


/* Box sizing rules */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Remove default margin and padding */
html, body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles on ul, ol elements */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}

/* Remove all animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* Base Typography */
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-size:16px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Platypi', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}


/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.container-small {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}



/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

.header-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.header-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.text-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-dark);
    letter-spacing: -0.5px;
    position: relative;
}

/* Navigation Styles */
.main-navigation ul {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #1a1a1a;
    padding:8px;
    transition: color 0.3s ease;
    text-decoration:none;
}


.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #111, #111);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}



/* Frosted Glass Navigation 

.glass-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: left;
}

*/


/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;   

}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 8s linear;
    will-change: transform, opacity; /* Optimizes animations */        
}

.hero-image.active {
    opacity: 1;
    transform: scale(1); /* Final natural scale */
}

.hero-images-data {
    display: none !important; /* Hide JSON data */
}


.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    perspective: 1000px; /* For 3D effects */
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive sizing */
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.1;
    text-shadow: 
        0 2px 10px rgba(0,0,0,0.3),
        0 4px 20px rgba(0,0,0,0.15);
    transform-style: preserve-3d;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    backdrop-filter: blur(2px);
    padding: 1rem;
    border-radius: 12px;

}

/* Optional CTA Button */
.hero-cta {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    backdrop-filter: blur(4px);
    background: rgba(194, 14, 53, 0.4); /* Your brand color with transparency */
}

.hero-cta:hover {
    background: rgba(194, 14, 53, 0.8); /* More opaque on hover */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Modern decorative elements */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(194,14,53,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content p {
        padding: 0.8rem;
        background: rgba(0,0,0,0.3); /* More contrast on mobile */
    }
    
    .hero-cta {
        padding: 0.8rem 1.5rem;
    }
}











/* Footer Styles */

.site-footer {
    background: #000;
    padding: 80px 0;
    color: rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

/* Content Styling */
.footer-brand h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
    position: relative;
    display: inline-block;
}

.footer-brand h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #c20e35;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
    max-width: 300px;
}

.contact-info h3, .social-media h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after, .social-media h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #c20e35;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.contact-list span {
    font-weight: 600;
    color: #c20e35;
    display: inline-block;
}

.contact-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    width:60%;
    margin:0 auto;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .site-footer {
        text-align: left;
        padding: 60px 0 30px;
    }
    
    .footer-brand h3::after,
    .contact-info h4::after,
    .social-media h4::after {

    }
    
    .contact-list li {
        flex-direction: column;
        align-items: start;
        gap: 5px;
    }
    
    .contact-list span {
        width: auto;
    }
    
    .social-links {
        justify-content: start;
    }
    
    .footer-brand p {
   
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .main-navigation ul {
   
        margin-left: 30px;
    }
    
    .main-navigation li {
        margin: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
}

@media (min-width: 992px) {
    .site-footer .container {
        display: flex;
        justify-content: space-between;
    }
    
    .footer-section {
        flex: 0 0 30%;
        margin-bottom: 0;
    }
}




/* Projects Page */
.projects-page {
    padding: 80px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

/* Filter Buttons */
.projects-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-button {
    padding: 10px 25px;
    background: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.filter-button:hover {
    background: #f9f9f9;
}

.filter-button.active {
    background: #000;
    color: #fff;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;

}

.project-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 0.01, 0.29, 0.99);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.project-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.project-image-container {
    padding: 20px;
    position: relative;
        aspect-ratio: 3 / 2;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease;
}

.project-card:hover .project-image {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-info {
    padding: 0 24px 24px;
}

.project-title {
    display:block;
    margin: 0;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    font-family: 'Inter', sans-serif;
    padding:0;
}

.project-tag {
    display:inline-block;
    padding:0;
    color: #555;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

/* Decorative accent */
.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c20e35, #e67e8e);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.project-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projects-filter {
    justify-content: start;
    gap: 6px;
}
    
    .project-image-container {
        padding: 16px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-info {
        padding: 0 20px 20px;
    }
}




/* Furniture Page */
.furniture-page {
    padding: 80px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

/* Furniture Grid */
.furniture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.furniture-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
                box-shadow 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.furniture-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.furniture-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   object-position: center;   
    display: block;
    cursor: pointer;
}



/* Single Post Gallery */
.single-post {
    padding:0;
}

.entry-header {
    margin-bottom: 40px;
    text-align: left;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
                box-shadow 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gallery-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
      object-position: center;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-image {
    max-height: 80vh;
    max-width: 90vw;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
}

.lightbox-caption {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .furniture-grid, .gallery-grid {
grid-template-columns: 1fr !important;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-image {
        max-width: 95vw;
    }
}



/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
}

.page-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    margin: 20px auto 0;
    border-radius: 2px;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

/* Left Column */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
    height: 700px;
    justify-content: center;     /* vertical alignment */
    align-items: flex-start;     /* horizontal alignment (to the left) */
    text-align: left;            /* optional, aligns text to the left */
}


.contact-cta {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7f8c8d;
}

.cta-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deco-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    opacity: 0.2;
}

.deco-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    opacity: 0.2;
    border-radius: 2px;
}

.contact-info {
    padding: 0;
}


.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

a.contact-detail {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Right Column */
.contact-right {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    align-self: flex-start;
    height:800px;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.form-header p {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Forminator Form Styling */
.contact-form-wrapper .forminator-form {
    --forminator-color-accent: #3a7bd5;
    --forminator-color-accent-dark: #2c5fb3;
}

.contact-form-wrapper .forminator-input,
.contact-form-wrapper .forminator-textarea {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
}

.forminator-button {
    background: #C20E35 !important;
    color: white !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s !important;
    text-decoration:none !important;
}


.forminator-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s;
}

.forminator-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194,14,53,0.3);
}

.forminator-button:hover::after {
    opacity: 1;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .contact-columns {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
  
 .contact-left {

    height: auto;

}   
    
    .page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
        .contact-columns {
        grid-template-columns: 1fr;
 
    }
    .contact-cta,
    .contact-right {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .contact-cta h2 {
        font-size: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
}



.blob-bg {
    position: relative;
    overflow: hidden;
}

.blob-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(194,14,53,0.08) 0%, rgba(255,232,225,0) 70%);
    border-radius: 50%;
    z-index: -1;
    top: -200px;
    right: -200px;
    animation: float 15s infinite alternate ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 30px) rotate(5deg); }
}


.gradient-text {
    background: linear-gradient(45deg, #C20E35 0%, #0A2463 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.gradient-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE8E1 100%);
    position: relative;
}


.btn-primary {
    background: #C20E35;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration:none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194,14,53,0.3);
}

.btn-primary:hover::after {
    opacity: 1;
}

.panorama-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #C20E35;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
	font-size:0.82rem;
    text-decoration:none;
    box-shadow: 0 5px 15px rgba(194,14,53,0.3);	
}

.panorama-badge:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
    opacity: 1;
    border-radius: 50px;	
}

.view-panorama-button{
position: fixed; bottom: 30px; right: 30px;  z-index: 9999;
	    background: #C20E35;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration:none;
}

.view-panorama-button:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s;
	    border-radius: 50px;
}

.view-panorama-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194,14,53,0.3);
}

.view-panorama-button:hover::after {
    opacity: 1;
}




/* Breadcrumb Styling */
.breadcrumb {
   font-size: 0.85rem;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: rgba(255, 255, 255, 0.4);
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-block;
  color: #333;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.breadcrumb a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #005b8e;
}

.breadcrumb span {
  color: #555;
}

.breadcrumb span:last-of-type {
  color: #111;
  font-weight: 600;
}

/* New Box Styling for Title + tag_2 */
.title-tag-box {
  background: rgba(255, 255, 255, 0.4);
 padding: 10px 16px;
  margin-top: 5px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.title-tag-box h1 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    font-family: 'Inter', sans-serif;
    margin:0;
}

.title-tag-box .at {
    display:inline-block;
    padding:0;
    color: #555;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}




.black {
color:#000 !important;
}

.margin{
margin-top:20px !important;
margin-bottom:40px !important;
}

.padding{
padding-top:20px !important;
padding-bottom:20px !important;
}


