/* Main Style CSS - Orient Yachting */
/* This file imports all necessary CSS files to avoid 404 errors */

@import url('main.css');
@import url('custom.css');
@import url('responsive.css');
@import url('color.css');
@import url('brand.css');

/* Additional core styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Global utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }
.mr-0 { margin-right: 0; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }
.pr-0 { padding-right: 0; }

/* Responsive utilities */
@media (max-width: 767px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
}

@media (max-width: 575px) {
    .d-sm-none { display: none; }
    .d-sm-block { display: block; }
} 