<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Add these @font-face declarations at the very top of your styles.css file */
@font-face {
  font-family: 'OpalBulgarian';
  src: url('vc-stuff/opalbulgarian-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpalBulgarian';
  src: url('vc-stuff/opalbulgarian-bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'OpalBulgarian', 'Montserrat', sans-serif;
    background-color: #1a1a1a; /* Standardized background color */
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: white;
}

ul {
    list-style: none;
}

/* Header &amp; Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 1);
    transition: background-color 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.8;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li {
    margin-left: 0;
}

nav ul li a {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('images/home/front-cover.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.slogan-container {
    width: 80%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Allow clicks to pass through to video */
}

.slogan-image {
    width: 100%;
    height: auto;
    max-height: clamp(25vh, 40vh, 50vh); /* More responsive to viewport height */
    object-fit: contain;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.8)) 
            drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.6))
            brightness(1.1) 
            contrast(1.2);
}

.overlay-text {
    font-size: clamp(1.2rem, 4vw, 5rem); /* Reduced minimum size */
    font-weight: 300;
    letter-spacing: clamp(2px, 0.8vw, 10px); /* Reduced minimum letter spacing */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: #fff;
    line-height: 1.2;
    width: 100%;
    max-width: 1200px;
    animation: fadeIn 2s ease-in-out;
    text-align: center;
    padding: 0 20px;
}

.overlay-text span {
    font-weight: 300;
    margin-left: 10px;
}

/* Handwritten text styles */
.handwritten-text {
    font-family: 'Oooh Baby', cursive;
    font-size: clamp(1.2rem, 4vw, 4rem);
    color: #fff;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0px 0px 2px rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 0.5s forwards;
    transform: rotate(-2deg);
    display: block;
    text-align: center;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 0.5px;
    width: 100%;
}

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partners Section */
.partners {
    padding: 40px 0;
    background-color: #0f0f0f;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.logo-item {
    flex: 0 0 150px;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
    opacity: 0.7;
    text-align: center;
}

.logo-item:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.logo-item img {
    max-width: 100%;
    height: auto;
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
    background-color: #0a0a0a;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    nav ul {
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000000;
        padding: 20px 0;
    }
    
    nav.active ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    nav.active ul li {
        margin: 5px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about h2 {
        font-size: 28px;
    }
    
    .about p {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .logo-item {
        flex: 0 0 100px;
    }

    .overlay-text {
        font-size: clamp(1.2rem, 4vw, 2.8rem); /* Better scaling for mobile */
        letter-spacing: clamp(2px, 0.8vw, 6px);
    }

    .handwritten-text {
        font-size: clamp(1rem, 3vw, 2.2rem); /* Better scaling for mobile */
    }

    .slogan-image {
        width: 90%;
        max-height: clamp(20vh, 35vh, 40vh); /* More responsive to viewport height */
    }
    
    .slogan-container {
        width: 90%;
    }
}

@media (max-width: 576px) {
    header {
        padding: 15px 0;
    }
    
    .logo img {
        height: 30px;
    }
    
    .about h2 {
        font-size: 24px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .logo-item {
        flex: 0 0 80px;
    }
    
    .overlay-text {
        font-size: clamp(1rem, 3.5vw, 2rem); /* Even smaller for very small screens */
        letter-spacing: clamp(1px, 0.6vw, 4px);
    }

    .handwritten-text {
        font-size: clamp(0.9rem, 3vw, 1.5rem);
    }

    .slogan-image {
        width: 95%;
        max-height: clamp(15vh, 25vh, 30vh); /* Smaller for very small screens */
    }
    
    .slogan-container {
        width: 95%;
    }
    
    .mobile-video iframe {
        height: 130vh !important; /* Even more height for smaller screens */
    }
}

/* Add new breakpoint for extra small screens */
@media (max-width: 375px) {
    .overlay-text {
        font-size: clamp(0.9rem, 3vw, 1.5rem); /* Very small for tiny screens */
        letter-spacing: clamp(1px, 0.5vw, 3px);
    }

    .handwritten-text {
        font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    }
    
    .about h2 {
        font-size: 20px;
    }
    
    .slogan-container {
        width: 98%;
    }
    
    .slogan-image {
        max-height: clamp(12vh, 20vh, 25vh); /* Very small for tiny screens */
    }
    
    .mobile-video iframe {
        height: 140vh !important; /* Maximum height for extra small screens */
    }
}

/* Number input with increment/decrement buttons */
.number-input {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Default layout for mobile (- on left, + on right) */
.number-input {
    flex-direction: row;
}

.number-input input {
    flex: 1;
    text-align: center;
    -moz-appearance: textfield;
    border-radius: 0;
    border: 1px solid #333;
    background-color: #222;
    color: white;
    padding: 10px;
    height: 40px;
}

.number-input input::-webkit-outer-spin-button,
.number-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input button {
    width: 40px;
    height: 40px;
    background-color: #333;
    border: 1px solid #444;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.number-input button:hover {
    background-color: #444;
}

/* Mobile layout (- on left, + on right) */
.number-input .decrement {
    border-radius: 4px 0 0 4px;
    order: 1;
}

.number-input input {
    order: 2;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.number-input .increment {
    border-radius: 0 4px 4px 0;
    order: 3;
}

/* Desktop layout (+ on top, - on bottom) */
@media (min-width: 769px) {
    .number-input {
        flex-direction: column;
        height: 120px;
    }
    
    .number-input input {
        order: 2;
        border: 1px solid #333;
        border-radius: 0;
        border-top: none;
        border-bottom: none;
        height: 40px;
    }
    
    .number-input .increment {
        order: 1;
        border-radius: 4px 4px 0 0;
    }
    
    .number-input .decrement {
        order: 3;
        border-radius: 0 0 4px 4px;
    }
}

/* Mobile optimization for number inputs */
@media (max-width: 768px) {
    .number-input button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .number-input input {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 8px 4px;
    }
}

/* Dimension group layout */
.dimension-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.input-field {
    flex: 1;
    min-width: 120px;
}

.input-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #000;
        transition: right 0.3s ease;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
        z-index: 1002;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Update other headings if desired */
h1, h2, h3, h4, h5, h6 {
    font-family: 'OpalBulgarian', 'Montserrat', sans-serif;
}

/* Contact Page Styles */
.contact-hero {
    height: 50vh;
    background-image: url('images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.contact-info {
    padding: 30px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #fff;
}

.info-item p {
    color: #fff;
    font-size: 1.1rem;
}

.social-links {
    margin-top: 30px;
}

.social-icon {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ccc;
}

.contact-form {
    padding: 30px;
    background-color: #222;
    border-radius: 5px;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #444;
    color: #fff;
    font-size: 1rem;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #fff;
    color: #1a1a1a;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #ccc;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        height: 40vh;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
}

.slogan-svg {
    width: 80%;
    max-width: 800px;
    max-height: 50vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.3));
}

.custom-slogan {
  font-family: 'OpalBulgarian', sans-serif;
  font-size: clamp(1.5rem, 5vw, 6rem); /* Reduced minimum size */
  font-weight: normal;
  letter-spacing: clamp(2px, 1.2vw, 12px); /* Reduced minimum letter spacing */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  animation: fadeIn 2s ease-in-out;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 20px;
}
</pre></body></html>