/**
* IRANSansX Fonts
* Name: IRANSansX Fonts
* Version: 3
* Author: Moslem Ebrahimi (moslemebrahimi.com)
* Website: http://fontiran.com
* Copyright: Commercial/Proprietary Software
*/

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 100;
	src: url('webfonts/fonts/woff/IRANSansX-Thin.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-Thin.woff2') format('woff2');		
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 200;
	src: url('webfonts/fonts/woff/IRANSansX-UltraLight.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-UltraLight.woff2') format('woff2');	
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 300;
	src: url('webfonts/fonts/woff/IRANSansX-Light.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-Light.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 500;
	src: url('webfonts/fonts/woff/IRANSansX-Medium.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-Medium.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 600;
	src: url('webfonts/fonts/woff/IRANSansX-DemiBold.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-DemiBold.woff2') format('woff2');	 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 800;
	src: url('webfonts/fonts/woff/IRANSansX-ExtraBold.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-ExtraBold.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 900;
	src: url('webfonts/fonts/woff/IRANSansX-Black.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-Black.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 950;
	src: url('webfonts/fonts/woff/IRANSansX-ExtraBlack.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-ExtraBlack.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: 1000;
	src: url('webfonts/fonts/woff/IRANSansX-Heavy.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-Heavy.woff2') format('woff2');		 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: bold;
	src: url('webfonts/fonts/woff/IRANSansX-Bold.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-Bold.woff2') format('woff2');	 
}

@font-face {
	font-family: IRANSansX;
	font-style: normal;
	font-weight: normal;
	src: url('webfonts/fonts/woff/IRANSansX-Regular.woff') format('woff'),   
	url('webfonts/fonts/woff2/IRANSansX-Regular.woff2') format('woff2');	
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content {
    text-align: center;
    z-index: 1;
}

.logo {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #000000;
    animation: fadeIn 1s ease-in;
}

.coming-soon {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 1.5s ease-in;
}

.english {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 0.2em;
    color: #000000;
    text-transform: uppercase;
}

.persian {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    direction: rtl;
    font-family: IRANSansX, 'Arial', 'Tahoma', sans-serif;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative elements */
.container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid #000000;
    top: 10%;
    left: 10%;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.container::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid #000000;
    bottom: 10%;
    right: 10%;
    opacity: 0.1;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
        margin-bottom: 2rem;
    }
    
    .english,
    .persian {
        font-size: 1.8rem;
    }
    
    .coming-soon {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }
    
    .english,
    .persian {
        font-size: 1.5rem;
    }
}
